basic navigation and basic forms

This commit is contained in:
Florian Hoss 2022-03-30 14:54:01 +02:00
parent 9c6ddf6c60
commit faf460470e
27 changed files with 284 additions and 30 deletions

View file

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