mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-12 15:27:16 -05:00
7a0af318df
* mergers code optimize * api log work with pipe * remove inbounds/outbounds by tags *fix rmo flag parse * cmds description and message optimize
11 lines
201 B
Go
11 lines
201 B
Go
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
|
|
}
|