mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 11:43:22 +02:00
12 lines
214 B
Go
12 lines
214 B
Go
package gateways
|
|
|
|
import (
|
|
"GoCMS/domain/image"
|
|
"mime/multipart"
|
|
)
|
|
|
|
type IImageRepository interface {
|
|
Create(file multipart.File, fileHeader multipart.FileHeader) (image.Image, error)
|
|
Delete(id uint32) error
|
|
}
|