package third import ( "flag" "os" "testing" "gitea.ckfah.com/cjjy/gocommon/pkg/boot" ) func TestMain(m *testing.M) { flag.Parse() boot.Init(boot.Qconf, boot.Trace, boot.NacosDiscover) exitCode := m.Run() os.Exit(exitCode) }