feat: post deletion

This commit is contained in:
Florian Sylvain
2024-05-19 17:12:48 +02:00
parent c1317e9f21
commit 7d2795a9e0
8 changed files with 107 additions and 4 deletions
+20
View File
@@ -0,0 +1,20 @@
package useCases
import (
"GoCMS/adapters/secondary/gateways"
"gorm.io/gorm"
)
type DeletePostUseCase struct {
postRepository gateways.PostRepository
}
func NewDeletePostUseCase(db *gorm.DB) *DeletePostUseCase {
return &DeletePostUseCase{
postRepository: *gateways.NewPostRepository(db),
}
}
func (g *DeletePostUseCase) DeletePost(userId uint32) error {
return g.postRepository.Delete(userId)
}