* test some refactoring for cachedplayer * rework logging * fix saving of log level --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
14 lines
449 B
C#
14 lines
449 B
C#
using Dalamud.Plugin;
|
|
using MareSynchronos.MareConfiguration.Configurations;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace MareSynchronos.MareConfiguration;
|
|
|
|
public class MareConfigService : ConfigurationServiceBase<MareConfig>
|
|
{
|
|
public const string ConfigName = "config.json";
|
|
protected override string ConfigurationName => ConfigName;
|
|
|
|
public MareConfigService(DalamudPluginInterface pluginInterface) : base(pluginInterface) { }
|
|
}
|