mirror of
https://github.com/containous/traefik.git
synced 2024-12-23 17:34:13 +03:00
10 lines
126 B
Go
10 lines
126 B
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func notFoundHandler(w http.ResponseWriter, r *http.Request) {
|
|
http.NotFound(w, r)
|
|
}
|