Initial Commit

This commit is contained in:
2021-12-17 21:21:58 +01:00
commit ec3dbbaf3a
20 changed files with 1495 additions and 0 deletions

14
cmd/server/main.go Normal file
View File

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