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