1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-23 04:47:02 +00:00

start of the vue + mvc example and a simple session binding

Former-commit-id: 994f00952352c93d270ad197cb843f3222fb37c0
This commit is contained in:
Gerasimos (Makis) Maropoulos
2017-12-14 05:56:23 +02:00
parent d72c649441
commit 0b2dcc76f5
12 changed files with 438 additions and 3 deletions

View File

@@ -160,7 +160,6 @@ func (c *ControllerActivator) isReservedMethod(name string) bool {
// register all available, exported methods to handlers if possible.
func (c *ControllerActivator) parseMethods() {
n := c.Type.NumMethod()
for i := 0; i < n; i++ {
m := c.Type.Method(i)