33 lines
640 B
Go
33 lines
640 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
var currentConfig config
|
|
|
|
func handleRequest(w http.ResponseWriter, r *http.Request) {
|
|
path := r.URL.Path
|
|
if path == "/" {
|
|
http.ServeFile(w, r, "./static/index.html")
|
|
|
|
} else if strings.HasPrefix(path, "/static/") {
|
|
fs := http.FileServer(http.Dir("./static"))
|
|
http.Handle("/static/", http.StripPrefix("/static/", fs))
|
|
} else {
|
|
w.WriteHeader(http.StatusNotFound)
|
|
}
|
|
|
|
}
|
|
|
|
func main() {
|
|
currentConfig = setConfig()
|
|
listen := currentConfig.host + ":" + currentConfig.port
|
|
http.HandleFunc("/", handleRequest)
|
|
|
|
err := http.ListenAndServe(listen, nil)
|
|
if err != nil {
|
|
return
|
|
}
|
|
}
|