(bundleService service.BundleService)
| 25 | } |
| 26 | |
| 27 | func NewBundleController(bundleService service.BundleService) BundleController { |
| 28 | return &bundleControllerImpl{bundleService: bundleService} |
| 29 | } |
| 30 | |
| 31 | func (bundleController *bundleControllerImpl) UploadBundle(c *fiber.Ctx) error { |
| 32 | authKey := c.Locals("authKey").(*model.AuthKey) |