(ctx fiber.Ctx)
| 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 |
no outgoing calls