| 10 | ) |
| 11 | |
| 12 | type UserController interface { |
| 13 | CreateUser(c *fiber.Ctx) error |
| 14 | LoginUser(c *fiber.Ctx) error |
| 15 | GetUser(c *fiber.Ctx) error |
| 16 | SetupStatus(c *fiber.Ctx) error |
| 17 | InitUser(c *fiber.Ctx) error |
| 18 | } |
| 19 | |
| 20 | type userController struct { |
| 21 | userService service.UserService |
nothing calls this directly
no outgoing calls
no test coverage detected