mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 11:43:22 +02:00
feat: images
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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
|
||||
}
|
||||
@@ -9,6 +9,7 @@ type IPostRepository interface {
|
||||
GetByName(name string) (post.Post, error)
|
||||
GetAll() []post.Post
|
||||
Create(post post.Post) (post.Post, error)
|
||||
UpdateBody(id uint32, body string) error
|
||||
UpdateBody(id uint32, body string) (post.Post, error)
|
||||
Delete(id uint32) error
|
||||
AddImage(postId uint32, imageId uint32) error
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user