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