mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 05:11:17 +08:00
29 lines
478 B
Go
29 lines
478 B
Go
package config
|
|
|
|
import (
|
|
"github.com/metacubex/mihomo/listener/sing"
|
|
|
|
"encoding/json"
|
|
)
|
|
|
|
type VmessUser struct {
|
|
Username string
|
|
UUID string
|
|
AlterID int
|
|
}
|
|
|
|
type VmessServer struct {
|
|
Enable bool
|
|
Listen string
|
|
Users []VmessUser
|
|
WsPath string
|
|
Certificate string
|
|
PrivateKey string
|
|
MuxOption sing.MuxOption `yaml:"mux-option" json:"mux-option,omitempty"`
|
|
}
|
|
|
|
func (t VmessServer) String() string {
|
|
b, _ := json.Marshal(t)
|
|
return string(b)
|
|
}
|