mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 16:57:22 +01:00
* test some refactoring for cachedplayer * rework logging * fix saving of log level --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
12 lines
454 B
C#
12 lines
454 B
C#
using Dalamud.Plugin;
|
|
using MareSynchronos.MareConfiguration.Configurations;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace MareSynchronos.MareConfiguration;
|
|
|
|
public class ServerConfigService : ConfigurationServiceBase<ServerConfig>
|
|
{
|
|
public const string ConfigName = "server.json";
|
|
protected override string ConfigurationName => ConfigName;
|
|
public ServerConfigService(DalamudPluginInterface pluginInterface) : base(pluginInterface) { }
|
|
}
|