* Fixed namespaces
Some checks failed
ci/woodpecker/pr/woodpecker Pipeline failed

This commit is contained in:
2026-01-19 14:36:32 +01:00
parent 64e3c440b7
commit 39851460da
3 changed files with 2 additions and 3 deletions

View File

@@ -12,7 +12,6 @@
<MinVerAutoIncrement>patch</MinVerAutoIncrement>
<MinVerMinimumMajorMinor>1.0</MinVerMinimumMajorMinor>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<RootNamespace>VaultService</RootNamespace>
</PropertyGroup>
<ItemGroup>

View File

@@ -1,4 +1,4 @@
namespace VaultService;
namespace Services.Vault;
public interface IVaultService
{

View File

@@ -2,7 +2,7 @@ using VaultSharp;
using VaultSharp.V1.AuthMethods.Token;
using VaultSharp.V1.Commons;
namespace VaultService;
namespace Services.Vault;
public class VaultService : IVaultService
{