Cleanup frontend
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
2022-04-19 22:07:43 +02:00
parent 63875a6f59
commit cb8400eea3
17 changed files with 4526 additions and 3763 deletions

View File

@@ -1,15 +0,0 @@
package main
import (
"fmt"
"net/http"
)
// Super simple development webserver
func main() {
err := http.ListenAndServe(":9090", http.FileServer(http.Dir("assets")))
if err != nil {
fmt.Println("Failed to start server", err)
return
}
}