clash/listener/config/shadowsocks.go
2023-11-23 08:20:26 +08:00

21 lines
376 B
Go

package config
import (
"github.com/metacubex/mihomo/listener/sing"
"encoding/json"
)
type ShadowsocksServer struct {
Enable bool
Listen string
Password string
Cipher string
Udp bool
MuxOption sing.MuxOption `yaml:"mux-option" json:"mux-option,omitempty"`
}
func (t ShadowsocksServer) String() string {
b, _ := json.Marshal(t)
return string(b)
}