recommender/pkg/consts/posts.go

11 lines
349 B
Go
Raw Normal View History

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
)