11 lines
349 B
Go
11 lines
349 B
Go
package consts
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
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")
|
|
)
|