Initial commit
This commit is contained in:
commit
c0cb826917
63 changed files with 2069 additions and 0 deletions
13
internal/domain/repository/images_repo.go
Normal file
13
internal/domain/repository/images_repo.go
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
package repository
|
||||
|
||||
import (
|
||||
"58team_blog/internal/domain/entities"
|
||||
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
type ImagesRepository interface {
|
||||
Create(*entities.Images) error
|
||||
FindById(uuid.UUID) (*entities.Images, error)
|
||||
Delete(uuid.UUID) error
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue