1234567891011 |
- // Copyright 2019 github.com. All rights reserved.
- // Use of this source code is governed by github.com.
- package tasker
- import "google.golang.org/grpc/status"
- var (
- ServiceError = status.Error(10002, "内部服务错误")
- InterruptError = status.Error(10000, "服务维护中")
- )
|