package main import ( "net/http" ) func StaticRouting(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "./static/index.html") }