9 lines
126 B
Go
9 lines
126 B
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func notFoundHandler(w http.ResponseWriter, r *http.Request) {
|
|
http.NotFound(w, r)
|
|
}
|