change(backend): serve static file from /static and serve index.html for /

This commit is contained in:
Ada 2023-10-02 19:22:56 +02:00
parent dc68e4a8d4
commit 85dff8deca

View file

@ -1,7 +1,6 @@
package main
import (
"fmt"
"net/http"
"strings"
)
@ -10,8 +9,6 @@ var currentConfig config
func handleRequest(w http.ResponseWriter, r *http.Request) {
path := r.URL.Path
switch r.Method {
case "GET":
if path == "/" {
http.ServeFile(w, r, "./static/index.html")
@ -21,9 +18,6 @@ func handleRequest(w http.ResponseWriter, r *http.Request) {
} else {
w.WriteHeader(http.StatusNotFound)
}
case "POST":
fmt.Println("Post!")
}
}
@ -34,6 +28,6 @@ func main() {
err := http.ListenAndServe(listen, nil)
if err != nil {
fmt.Println(err)
return
}
}