mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
15 lines
387 B
Go
15 lines
387 B
Go
|
package routes
|
||
|
|
||
|
import (
|
||
|
"github.com/kataras/iris/_examples/structuring/handler-based/bootstrap"
|
||
|
)
|
||
|
|
||
|
// Configure registers the nessecary routes to the app.
|
||
|
func Configure(b *bootstrap.Bootstrapper) {
|
||
|
// routes
|
||
|
b.Get("/", GetIndexHandler)
|
||
|
b.Get("/follower/{id:long}", GetFollowerHandler)
|
||
|
b.Get("/following/{id:long}", GetFollowingHandler)
|
||
|
b.Get("/like/{id:long}", GetLikeHandler)
|
||
|
}
|