Significantly simplified adding new Database Tables

This commit is contained in:
Pablu23
2024-04-02 18:22:54 +02:00
parent ce878efce3
commit c83a10823d
7 changed files with 291 additions and 308 deletions

View File

@@ -33,15 +33,17 @@ func main() {
}
}()
port := 8080
go func() {
time.Sleep(300 * time.Millisecond)
err := open("http://localhost:8000")
err := open(fmt.Sprintf("http://localhost:%d", port))
if err != nil {
fmt.Println(err)
}
}()
err = s.Start()
err = s.Start(port)
if err != nil {
panic(err)
}