mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
3945fa68d1
We have to do the same on iris-contrib/examples, iris-contrib/middleware and e.t.c. Former-commit-id: 0860688158f374bc137bc934b81b26dcd0e10964
14 lines
376 B
Go
14 lines
376 B
Go
package routes
|
|
|
|
import (
|
|
"github.com/kataras/iris/v12/_examples/structuring/bootstrap/bootstrap"
|
|
)
|
|
|
|
// Configure registers the necessary routes to the app.
|
|
func Configure(b *bootstrap.Bootstrapper) {
|
|
b.Get("/", GetIndexHandler)
|
|
b.Get("/follower/{id:long}", GetFollowerHandler)
|
|
b.Get("/following/{id:long}", GetFollowingHandler)
|
|
b.Get("/like/{id:long}", GetLikeHandler)
|
|
}
|