initial go backend
This commit is contained in:
parent
509622aec0
commit
28ebe953e0
11 changed files with 205 additions and 0 deletions
8
Lab01/app/main.go
Normal file
8
Lab01/app/main.go
Normal file
|
@ -0,0 +1,8 @@
|
|||
package main
|
||||
|
||||
import "app/api"
|
||||
|
||||
func main() {
|
||||
backend := api.Api{}
|
||||
backend.Run()
|
||||
}
|
Reference in a new issue