(authKeyService service.AuthKeyService)
| 18 | } |
| 19 | |
| 20 | func NewAuthKeyController(authKeyService service.AuthKeyService) AuthKeyController { |
| 21 | return &authKeyController{authKeyService: authKeyService} |
| 22 | } |
| 23 | |
| 24 | func (c *authKeyController) CreateAuthKey(ctx *fiber.Ctx) error { |
| 25 | authKey := types.CreateAuthKeyRequest{} |