ProductHandler an interface with operations to be implemented by a specific handler, ie http, gRCP
| 6 | |
| 7 | // ProductHandler an interface with operations to be implemented by a specific handler, ie http, gRCP |
| 8 | type ProductHandler interface { |
| 9 | Get(ctx fiber.Ctx) error |
| 10 | Post(ctx fiber.Ctx) error |
| 11 | Put(ctx fiber.Ctx) error |
| 12 | Delete(ctx fiber.Ctx) error |
| 13 | GetAll(ctx fiber.Ctx) error |
| 14 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…