8 lines
118 B
Go
8 lines
118 B
Go
package consts
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrAnotherOperationInProgress = errors.New("another operation in progress")
|
|
)
|