mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
11277f12a0
Former-commit-id: 24ee6ce233d83f0b394afc6c69b5a88243406045
14 lines
372 B
Go
14 lines
372 B
Go
package routes
|
|
|
|
import (
|
|
"github.com/kataras/iris/_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)
|
|
}
|