mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
11277f12a0
Former-commit-id: 24ee6ce233d83f0b394afc6c69b5a88243406045
12 lines
262 B
Go
12 lines
262 B
Go
package routes
|
|
|
|
import (
|
|
"github.com/kataras/iris"
|
|
)
|
|
|
|
// GetFollowerHandler handles the GET: /follower/{id}
|
|
func GetFollowerHandler(ctx iris.Context) {
|
|
id, _ := ctx.Params().GetInt64("id")
|
|
ctx.Writef("from "+ctx.GetCurrentRoute().Path()+" with ID: %d", id)
|
|
}
|