mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-23 21:34:41 -05:00
17 lines
531 B
Go
17 lines
531 B
Go
package parser
|
|
|
|
import (
|
|
"github.com/nitezs/sub2sing-box/constant"
|
|
"github.com/nitezs/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,
|
|
}
|