mirror of
https://github.com/nitezs/sub2clash.git
synced 2024-12-24 23:44:42 -05:00
27 lines
1.1 KiB
Go
27 lines
1.1 KiB
Go
package model
|
|
|
|
type Subscription struct {
|
|
Port int `yaml:"port,omitempty"`
|
|
SocksPort int `yaml:"socks-port,omitempty"`
|
|
AllowLan bool `yaml:"allow-lan"`
|
|
Mode string `yaml:"mode,omitempty"`
|
|
LogLevel string `yaml:"logger-level,omitempty"`
|
|
ExternalController string `yaml:"external-controller,omitempty"`
|
|
Proxies []Proxy `yaml:"proxies,omitempty"`
|
|
ProxyGroups []ProxyGroup `yaml:"proxy-groups,omitempty"`
|
|
Rules []string `yaml:"rules,omitempty"`
|
|
RuleProviders map[string]RuleProvider `yaml:"rule-providers,omitempty,omitempty"`
|
|
}
|
|
|
|
type RuleProvider struct {
|
|
Type string `yaml:"type,omitempty"`
|
|
Behavior string `yaml:"behavior,omitempty"`
|
|
Url string `yaml:"url,omitempty"`
|
|
Path string `yaml:"path,omitempty"`
|
|
Interval int `yaml:"interval,omitempty"`
|
|
}
|
|
|
|
type Payload struct {
|
|
Rules []string `yaml:"payload,omitempty"`
|
|
}
|