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