16 lines
422 B
Go
16 lines
422 B
Go
package repositories
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gitea.d3m0k1d.ru/d3m0k1d/d3m0k1d.ru/backend/internal/storage"
|
|
)
|
|
|
|
type PostRepository interface {
|
|
GetAll(ctx context.Context) ([]storage.PostReq, error)
|
|
GetByID(ctx context.Context, id int) (storage.PostReq, error)
|
|
Create(ctx context.Context, post storage.Post) error
|
|
Update(ctx context.Context, id int, post storage.Post) error
|
|
Delete(ctx context.Context, id int) error
|
|
}
|