| 10 | ) |
| 11 | |
| 12 | type ClientController interface { |
| 13 | CheckUpdate(c *fiber.Ctx) error |
| 14 | ReportStatusDeploy(c *fiber.Ctx) error |
| 15 | ReportStatusDownload(c *fiber.Ctx) error |
| 16 | } |
| 17 | |
| 18 | type clientController struct { |
| 19 | clientService service.ClientService |
no outgoing calls
no test coverage detected