recommender/pkg/consts/posts.go
2024-11-10 00:11:00 +08:00

8 lines
118 B
Go

package consts
import "errors"
var (
ErrAnotherOperationInProgress = errors.New("another operation in progress")
)