7 lines
92 B
Go
7 lines
92 B
Go
package amo
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrTooManyEntities = errors.New("too many entities")
|
|
)
|