mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
28 lines
954 B
C#
28 lines
954 B
C#
namespace Netch
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string TempConfig = "data\\last.json";
|
|
public const string TempRouteFile = "data\\route.txt";
|
|
|
|
public const string AioDnsRuleFile = "bin\\aiodns.conf";
|
|
public const string NFDriver = "bin\\nfdriver.sys";
|
|
public const string NFCore = "bin\\core.bin";
|
|
public const string STUNServersFile = "bin\\stun.txt";
|
|
|
|
public const string LogFile = "logging\\application.log";
|
|
|
|
public const string OutputTemplate = @"[{Timestamp:yyyy-MM-dd HH:mm:ss}][{Level}] {Message:lj}{NewLine}{Exception}";
|
|
public const string EOF = "\r\n";
|
|
|
|
public const string DefaultGroup = "NONE";
|
|
|
|
public static class Parameter
|
|
{
|
|
public const string Show = "-show";
|
|
public const string ForceUpdate = "-forceUpdate";
|
|
}
|
|
|
|
public const string WintunDllFile = "bin\\wintun.dll";
|
|
}
|
|
} |