13 lines
309 B
Go
13 lines
309 B
Go
package types
|
|
|
|
const (
|
|
CodeSuccess = "0000"
|
|
InfoSuccess = "success"
|
|
CodeUnknownError = "0001"
|
|
InfoUnknownError = "unknown error"
|
|
CodeIllegalParameter = "0002"
|
|
InfoIllegalParameter = "illegal parameter"
|
|
CodeAgentNotFound = "0003"
|
|
InfoAgentNotFound = "agent not found"
|
|
)
|