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") )