mirror of
https://github.com/xslasd/go-license.git
synced 2025-12-24 12:57:55 +08:00
14 lines
381 B
Go
14 lines
381 B
Go
package client
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ActivationHandlerErr = errors.New("not set activation handler")
|
|
LicenseVerifyErr = errors.New("License file verification error")
|
|
LicenseExpirationErr = errors.New("License file expiration")
|
|
|
|
ActivationChecksValErr = errors.New("Activation check value error")
|
|
|
|
OnlineUsersErr = errors.New("Exceeded maximum number of online users")
|
|
)
|