mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 19:53:21 +02:00
11 lines
177 B
Go
11 lines
177 B
Go
package image
|
|
|
|
import (
|
|
"mime/multipart"
|
|
)
|
|
|
|
type Repository interface {
|
|
Create(file multipart.File, fileHeader multipart.FileHeader) (Image, error)
|
|
Delete(id uint32) error
|
|
}
|