remove old ref + update gitsubmodule + update 0.1.0.0 + add NoSnapService + pimpmymod + Licence AGPLv3

This commit is contained in:
2025-09-05 15:03:41 +02:00
parent b5d8f288f9
commit eeab8354b6
95 changed files with 435 additions and 1742 deletions

View File

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