| 7 | ) |
| 8 | |
| 9 | type API struct { |
| 10 | Users user.Repository // exported field so api/router.go#api.RegisterDependency can bind it. |
| 11 | } |
| 12 | |
| 13 | func (api *API) Configure(r iris.Party) { |
| 14 | r.Post("/signup", api.signUp) |
nothing calls this directly
no outgoing calls
no test coverage detected