2026-06-09 23:53:08 +08:00
|
|
|
package types
|
2026-06-10 12:49:29 +08:00
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
CodeSuccess = "0000"
|
|
|
|
|
InfoSuccess = "success"
|
|
|
|
|
CodeUnknownError = "0001"
|
|
|
|
|
InfoUnknownError = "unknown error"
|
|
|
|
|
CodeIllegalParameter = "0002"
|
|
|
|
|
InfoIllegalParameter = "illegal parameter"
|
|
|
|
|
CodeAgentNotFound = "0003"
|
|
|
|
|
InfoAgentNotFound = "agent not found"
|
|
|
|
|
)
|