1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-23 21:44:41 -05:00
sub2clash/config/config.go
2023-09-12 18:40:24 +08:00

17 lines
272 B
Go

package config
type Config struct {
Port int //TODO: 使用自定义端口
MetaTemplate string
ClashTemplate string
}
var Default *Config
func init() {
Default = &Config{
MetaTemplate: "template-meta.yaml",
ClashTemplate: "template-clash.yaml",
}
}