All checks were successful
Build docker and publish / prepare (20.15.1) (push) Successful in 11s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.admin image_name:ppanel-admin name:admin]) (push) Successful in 4m32s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.api image_name:ppanel-api name:api]) (push) Successful in 8m6s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.node image_name:ppanel-node name:node]) (push) Successful in 4m26s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.queue image_name:ppanel-queue name:queue]) (push) Successful in 3m55s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.rpc-core image_name:ppanel-rpc-core name:rpc-core]) (push) Successful in 8m23s
Build docker and publish / build (map[dockerfile:deploy/Dockerfile.scheduler image_name:ppanel-scheduler name:scheduler]) (push) Successful in 4m1s
Build docker and publish / deploy (push) Successful in 45s
Build docker and publish / notify (push) Successful in 3s
30 lines
721 B
Go
30 lines
721 B
Go
package xerr
|
|
|
|
const (
|
|
OK = 0
|
|
ServerError = 1001
|
|
ParamError = 1002
|
|
TokenExpire = 1003
|
|
TokenEmpty = 1004
|
|
InvalidAccess = 1005
|
|
DatabaseQueryError = 1006
|
|
DatabaseInsertError = 1007
|
|
DatabaseUpdateError = 1008
|
|
DatabaseDeleteError = 1009
|
|
UserNotFound = 2001
|
|
UserDisabled = 2002
|
|
PasswordError = 2003
|
|
OrderNotFound = 3001
|
|
OrderExpired = 3002
|
|
PaymentFailed = 4001
|
|
SubscribeExpired = 5001
|
|
NodeAuthFailed = 6001
|
|
SignatureMissing = 7001
|
|
SignatureExpired = 7002
|
|
SignatureInvalid = 7003
|
|
SignatureReplay = 7004
|
|
DecryptFailed = 7005
|
|
DeviceLoginDisabled = 8001
|
|
DeviceNotEnabled = 8002
|
|
)
|