feat: images

This commit is contained in:
Florian Sylvain
2024-06-13 13:34:10 +02:00
parent eb98a1003e
commit c25fb1b0a3
19 changed files with 387 additions and 100 deletions
+2 -1
View File
@@ -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
}