github.com/metacubex/mihomo@v1.18.5/constant/features/tags.go (about) 1 package features 2 3 func Tags() (tags []string) { 4 if CMFA { 5 tags = append(tags, "cmfa") 6 } 7 if WithLowMemory { 8 tags = append(tags, "with_low_memory") 9 } 10 if NoFakeTCP { 11 tags = append(tags, "no_fake_tcp") 12 } 13 if WithGVisor { 14 tags = append(tags, "with_gvisor") 15 } 16 return 17 }