1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-25 01:34:41 -05:00
sub2clash/model/clash.go

30 lines
455 B
Go
Raw Normal View History

package model
type ClashType int
const (
Clash ClashType = 1 + iota
ClashMeta
)
func GetSupportProxyTypes(clashType ClashType) map[string]bool {
if clashType == Clash {
return map[string]bool{
"ss": true,
"ssr": true,
"vmess": true,
"trojan": true,
}
}
if clashType == ClashMeta {
return map[string]bool{
"ss": true,
"ssr": true,
"vmess": true,
"trojan": true,
"vless": true,
}
}
return nil
}