2024-11-09 16:11:00 +00:00
|
|
|
package consts
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
var (
|
2024-11-09 19:49:53 +00:00
|
|
|
ErrPostNotReady = errors.New("post not ready")
|
|
|
|
ErrAnotherOperationInProgress = errors.New("another operation in progress")
|
|
|
|
ErrExternalUserDoesNotLikeAnyPost = errors.New("external user does not like any post")
|
|
|
|
ErrPostTargetIdExists = errors.New("post target id exists")
|
2024-11-09 16:11:00 +00:00
|
|
|
)
|