diff options
| -rw-r--r-- | http/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http/main.go b/http/main.go index d7c6399..a4ed7f6 100644 --- a/http/main.go +++ b/http/main.go @@ -27,7 +27,7 @@ var NewPage func(string) page.Page = func(u string) page.Page { // index is called var ReindexRedirectTo = "/fullIndex" -func GetHandler() http.Handler { +func GetHandler() *mux.Router { if NewPage == nil { fmt.Fprintln(os.Stderr, "Warning, global NewPage method is not defined!") } |
