Add project files.
This commit is contained in:
		| @@ -0,0 +1,11 @@ | ||||
| using Core.Blueprint.Domain.Entities; | ||||
|  | ||||
| namespace Core.Blueprint.DAL.Infrastructure.Contracts | ||||
| { | ||||
|     public interface ISecretRepository | ||||
|     { | ||||
|         Task<Secret> GetSecret(string secretName, CancellationToken cancellationToken); | ||||
|         Task SetSecret(string secretName, string secretValue, CancellationToken cancellationToken); | ||||
|         Task RemoveSecret(string secretName, CancellationToken cancellationToken); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin