feat: init go mod

This commit is contained in:
lab 2021-12-25 02:16:59 +08:00
parent a3d4bbf5de
commit 7dfb33a471
2 changed files with 14 additions and 0 deletions

11
cmd/apiserver/main.go Normal file
View File

@ -0,0 +1,11 @@
package main
func main() {
if err := run(); err != nil {
panic(err)
}
}
func run() error {
return nil
}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.esin.io/kimbon/weapp
go 1.17