mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 10:22:53 +00:00
13 lines
180 B
Go
13 lines
180 B
Go
package test
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// IndexGET displays the home page
|
|
func PageNotFound(w http.ResponseWriter, r *http.Request) {
|
|
|
|
http.ServeFile(w, r, "./public/404.html")
|
|
|
|
}
|