mirror of
https://github.com/bestnite/sub2clash.git
synced 2025-06-17 04:33:18 +08:00
9 lines
211 B
Go
9 lines
211 B
Go
package proxy
|
|
|
|
type Socks struct {
|
|
Server string `yaml:"server,omitempty"`
|
|
Port int `yaml:"port,omitempty"`
|
|
Username string `yaml:"username,omitempty"`
|
|
Password string `yaml:"password,omitempty"`
|
|
}
|