(ctx context.Context, post domain.Post)
| 22 | type PostRepository interface { |
| 23 | Create(ctx context.Context, post domain.Post) (uint, error) |
| 24 | Update(ctx context.Context, post domain.Post) error |
| 25 | UpdateStatus(ctx context.Context, postId uint, uid int64, status uint8) error |
| 26 | GetPostById(ctx context.Context, postId uint, uid int64) (domain.Post, error) |
| 27 | GetPublishPostById(ctx context.Context, postId uint) (domain.Post, error) |
no outgoing calls
no test coverage detected