Files
d3m0k1d.ru/backend/internal/repositories/interface.go
d3m0k1d 44406b02d3
Some checks failed
Backend ci / build (push) Failing after 36m27s
chore: add code for 2 handlers with GET
2026-02-03 19:41:18 +03:00

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
}