GetFollowerHandler handles the GET: /follower/{id}
(ctx iris.Context)
| 6 | |
| 7 | // GetFollowerHandler handles the GET: /follower/{id} |
| 8 | func GetFollowerHandler(ctx iris.Context) { |
| 9 | id, _ := ctx.Params().GetInt64("id") |
| 10 | ctx.Writef("from "+ctx.GetCurrentRoute().Path()+" with ID: %d", id) |
| 11 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…