initial go backend

This commit is contained in:
Florian Hoss 2022-03-30 12:39:04 +02:00
parent 509622aec0
commit 28ebe953e0
11 changed files with 205 additions and 0 deletions

8
Lab01/app/main.go Normal file
View file

@ -0,0 +1,8 @@
package main
import "app/api"
func main() {
backend := api.Api{}
backend.Run()
}