bibibi-bug
Results
1
issues of
bibibi-bug
``` app := iris.New() app.PartyFunc("/users", func(users iris.Party) { users.Use(myAuthMiddlewareHandler) // http://localhost:8080/users/42/profile users.Get("/{id:int}/profile", userProfileHandler) // http://localhost:8080/users/messages/1 //users.Get("/inbox/{id:int}", userMessageHandler)There's a question here users.Get("/messages/{id:int}", userMessageHandler)//Right? }) ```