(ctx iris.Context)
| 16 | } |
| 17 | |
| 18 | func testBinderFunc(ctx iris.Context) testUserStruct { |
| 19 | id, _ := ctx.Params().GetInt64("id") |
| 20 | username := ctx.Params().Get("username") |
| 21 | return testUserStruct{ |
| 22 | ID: id, |
| 23 | Username: username, |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | // service |
| 28 | type ( |