1
0
mirror of https://github.com/nitezs/sub2sing-box.git synced 2024-12-23 21:04:41 -05:00
sub2sing-box/parser/parsers_map.go
2024-04-17 22:51:29 +08:00

17 lines
495 B
Go

package parser
import (
"sub2sing-box/constant"
"sub2sing-box/model"
)
var ParserMap map[string]func(string) (model.Outbound, error) = map[string]func(string) (model.Outbound, error){
constant.ShadowsocksPrefix: ParseShadowsocks,
constant.VMessPrefix: ParseVmess,
constant.TrojanPrefix: ParseTrojan,
constant.VLESSPrefix: ParseVless,
constant.HysteriaPrefix: ParseHysteria,
constant.Hysteria2Prefix1: ParseHysteria2,
constant.Hysteria2Prefix2: ParseHysteria2,
}