mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
18 lines
236 B
Go
18 lines
236 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
)
|
||
|
|
||
|
type ShadowsocksServer struct {
|
||
|
Enable bool
|
||
|
Listen string
|
||
|
Password string
|
||
|
Cipher string
|
||
|
}
|
||
|
|
||
|
func (t ShadowsocksServer) String() string {
|
||
|
b, _ := json.Marshal(t)
|
||
|
return string(b)
|
||
|
}
|