mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 11:43:22 +02:00
21 lines
407 B
Go
21 lines
407 B
Go
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)
|
|
}
|