15 lines
395 B
C#
15 lines
395 B
C#
using LightlessSync.LightlessConfiguration.Configurations;
|
|
|
|
namespace LightlessSync.LightlessConfiguration;
|
|
|
|
public class TransientConfigService : ConfigurationServiceBase<TransientConfig>
|
|
{
|
|
public const string ConfigName = "transient.json";
|
|
|
|
public TransientConfigService(string configDir) : base(configDir)
|
|
{
|
|
}
|
|
|
|
public override string ConfigurationName => ConfigName;
|
|
}
|