mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
26 lines
356 B
Go
26 lines
356 B
Go
package config
|
|
|
|
import (
|
|
"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
|
|
}
|
|
|
|
func (t VmessServer) String() string {
|
|
b, _ := json.Marshal(t)
|
|
return string(b)
|
|
}
|