fix: remove low file code from domain

This commit is contained in:
Floriansylvain
2025-12-22 02:41:09 +01:00
parent 76245c47c9
commit ce787d26ff
5 changed files with 26 additions and 18 deletions
@@ -1,10 +1,6 @@
package image
import (
"mime/multipart"
)
type Repository interface {
Create(file multipart.File, fileHeader multipart.FileHeader) (Image, error)
Create(input ImageInput) (Image, error)
Delete(id uint32) error
}