Initial commit

This commit is contained in:
yan.y
2024-03-27 23:25:08 +08:00
commit 0884384e91
127 changed files with 9353 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package http
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
go startGin()
code := m.Run()
os.Exit(code)
}