handlers.go 235 B

12345678910111213
  1. package server
  2. import (
  3. "net/http"
  4. "git.linuxit.ro/turos.robert/Site-Cnapsys/lib/inout"
  5. )
  6. func Wildcard(w http.ResponseWriter, r *http.Request) {
  7. if r.Method == "GET" {
  8. w.Write(inout.FileToBytes("./templates/index.html"))
  9. }
  10. }