UserController create a user handler used to handle request for user resource.
| 11 | |
| 12 | // UserController create a user handler used to handle request for user resource. |
| 13 | type UserController struct { |
| 14 | srv srvv1.Service |
| 15 | } |
| 16 | |
| 17 | // NewUserController creates a user handler. |
| 18 | func NewUserController(store store.Factory) *UserController { |
nothing calls this directly
no outgoing calls
no test coverage detected