2017-04-17 20:47:53 +00:00
|
|
|
package server
|
2015-09-24 12:32:37 +00:00
|
|
|
|
2015-09-19 11:02:59 +00:00
|
|
|
import (
|
2015-11-06 17:11:57 +00:00
|
|
|
"net/http"
|
2015-09-19 11:02:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func notFoundHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
http.NotFound(w, r)
|
|
|
|
}
|