mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-02-23 12:42:27 +08:00
18 lines
210 B
Go
18 lines
210 B
Go
package config
|
|
|
|
import (
|
|
C "github.com/Dreamacro/clash/constant"
|
|
)
|
|
|
|
type General struct {
|
|
*Base
|
|
Mode Mode
|
|
LogLevel C.LogLevel
|
|
}
|
|
|
|
type Base struct {
|
|
Port *int
|
|
SocketPort *int
|
|
AllowLan *bool
|
|
}
|