21 lines
392 B
Go
21 lines
392 B
Go
package constant
|
|
|
|
const (
|
|
LogDir = "logs/"
|
|
SqliteDBDir = "data/"
|
|
BinDir = "bin/"
|
|
ExportPathDir = "export/"
|
|
|
|
SqliteDBPath = "data/h_ui.db"
|
|
|
|
Hysteria2ConfigPath = "/etc/hysteria/config.yaml"
|
|
Hysteria2BinPath = "/usr/local/bin/hysteria"
|
|
|
|
SystemLogPath = "logs/hy2xs-admin.log"
|
|
Hysteria2LogPath = "logs/hysteria2.log"
|
|
|
|
TokenType = "Bearer"
|
|
|
|
Version = "v0.0.22"
|
|
)
|