You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package jpush |
|
|
|
const ( |
|
// ErrAllTokenInvalid 所有的token都无效 |
|
// ErrAllTokensInvalid = int(1060) |
|
|
|
// ErrRetry 需要重试 |
|
ErrRetry = int(1030) |
|
// ErrInternal 服务方内部错误 |
|
ErrInternal = int(1000) |
|
)
|
|
|