Vault.Demo.hashicorp.Console/Helper/IConnectionStringProvider.cs
2025-06-24 10:07:39 +05:30

12 lines
266 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Vault.Demo.hashicorp.Console.Helper;
internal interface IConnectionStringProvider
{
Task<string> GetConnectionString(string key);
}