(ctx context.Context, post domain.Post)
| 17 | |
| 18 | type PostService interface { |
| 19 | Create(ctx context.Context, post domain.Post) (uint, error) |
| 20 | Update(ctx context.Context, post domain.Post) error |
| 21 | Publish(ctx context.Context, postId uint, uid int64) error |
| 22 | Withdraw(ctx context.Context, postId uint, uid int64) error |
no outgoing calls
no test coverage detected