mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 09:58:14 -05:00
18 lines
288 B
Go
18 lines
288 B
Go
|
package conf
|
||
|
|
||
|
type Hysteria2Config struct {
|
||
|
LogConfig Hysteria2LogConfig `json:"Log"`
|
||
|
}
|
||
|
|
||
|
type Hysteria2LogConfig struct {
|
||
|
Level string `json:"Level"`
|
||
|
}
|
||
|
|
||
|
func NewHysteria2Config() *Hysteria2Config {
|
||
|
return &Hysteria2Config{
|
||
|
LogConfig: Hysteria2LogConfig{
|
||
|
Level: "error",
|
||
|
},
|
||
|
}
|
||
|
}
|