### Description this is not work: ``` go e.Group("/admin",EnterAdmin) ``` but this works: ``` go e.Group("/admin") e.Use(EnterAdmin) ``` it`s the newes commit,this is wired,why?