From ef857c40a466e993815c541643f28a9f608e24e1 Mon Sep 17 00:00:00 2001 From: "luke.rodham" Date: Mon, 13 Nov 2017 15:12:49 +0000 Subject: [PATCH] SAVEPOINT --- router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router.go b/router.go index 6e86e24..4c7fd31 100644 --- a/router.go +++ b/router.go @@ -9,7 +9,7 @@ type Router interface { GET(path string, h Handler) POST(path string, h Handler) Static(path string, root http.FileSystem) - NotFound(path string. h Handler) + NotFound(path string, h Handler) GetRoutes() []*Route GetStaticRoutes() []*StaticRoute