1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-27 14:57:05 +00:00

make Route's parse public

This commit is contained in:
Makis Maropoulos
2016-06-02 18:32:20 +03:00
parent 56a9fba34d
commit 79e984146e
2 changed files with 5 additions and 5 deletions

View File

@@ -128,7 +128,7 @@ func (s *Iris) initTemplates() {
return "", ErrRenderRouteNotFound.Format(routeName)
}
if result, ok := r.parse(args...); ok {
if result, ok := r.Parse(args...); ok {
return result, nil
}
return "", nil