mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-10 18:02:51 +00:00
13 lines
186 B
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")
|
|
|
|
}
|