There is no reason to export these functions.

This commit is contained in:
claudemiro
2015-01-31 09:13:24 -03:00
parent e9bdc0859e
commit a3465f332e
12 changed files with 79 additions and 79 deletions
+2 -2
View File
@@ -31,8 +31,8 @@ func NewRouter() *mux.Router {
handler = route.HandlerFunc
if route.RequiresRestAuth {
handler = RestAuthenticationHandler(handler)
handler = RestCheckAppDisabledHandler(handler)
handler = restAuthenticationHandler(handler)
handler = restCheckAppDisabledHandler(handler)
}
router.Methods(route.Method).Path(route.Pattern).Name(route.Name).Handler(handler)