20 lines
484 B
Go
20 lines
484 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
|
|
}
|
|
|
|
type AuthRepository interface {
|
|
Test(ctx context.Context)
|
|
}
|