namespace RecNet.Application.Common.Interfaces; public interface IConfigService { Task GetAsync(string key, CancellationToken ct = default); Task GetAsync(string key, T defaultValue, CancellationToken ct = default); Task SetAsync(string key, T value, CancellationToken ct = default); }