This commit is contained in:
Zheng Kai
2023-03-29 17:42:41 +08:00
parent 94b04a181a
commit 1b107ed035
36 changed files with 617 additions and 0 deletions

7
server/build/dev/go.mod Normal file
View File

@@ -0,0 +1,7 @@
module dev
go 1.17
require project v0.0.0
replace project v0.0.0 => ../../src

7
server/build/dev/main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "project"
func main() {
project.Start()
}