1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-10 18:02:51 +00:00
Files
mywebsite/testing_files/404.go

13 lines
186 B
Go

package controller
import (
"net/http"
)
// IndexGET displays the home page
func PageNotFound(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "./public/404.html")
}