1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-09 05:26:39 -04:00
v2fly/infra/conf/mergers/names.go

11 lines
201 B
Go
Raw Normal View History

package mergers
// GetAllNames get names of all formats
func GetAllNames() []string {
names := make([]string, 0)
for _, f := range mergersByName {
names = append(names, f.Name)
}
return names
}