using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
namespace MareSynchronos.Services
{
///
/// Stub minimal : renvoie toujours null (pas de conf distante).
///
public class RemoteConfigurationService
{
private readonly ILogger _logger;
public RemoteConfigurationService(ILogger logger)
{
_logger = logger;
}
public Task GetConfigAsync(string key) where T : class
=> Task.FromResult(null);
}
}