chore: 启动参数v,查看版本同时打印使用的tags

This commit is contained in:
Skyxim
2022-06-03 20:23:53 +08:00
parent ed9b9ce3c5
commit 298ca42369
4 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,7 @@
//go:build no_doq
package features
func init() {
TAGS = append(TAGS, "no_doq")
}

View File

@ -0,0 +1,7 @@
//go:build no_gvisor
package features
func init() {
TAGS = append(TAGS, "no_gvisor")
}

View File

@ -0,0 +1,3 @@
package features
var TAGS = make([]string, 0, 0)