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