package server import ( "net/http" "git.linuxit.ro/turos.robert/Site-Cnapsys/lib/inout" ) func Wildcard(w http.ResponseWriter, r *http.Request) { if r.Method == "GET" { w.Write(inout.FileToBytes("./templates/index.html")) } }