modelRT/constants/monitor.go

27 lines
761 B
Go
Raw Normal View History

2025-11-03 17:35:03 +08:00
// Package constants define constant variable
package constants
const (
// MonitorStartAction define the real time monitor start action
MonitorStartAction string = "start"
// MonitorStopAction define the real time monitor stop action
MonitorStopAction string = "stop"
// MonitorAppendAction define the real time monitor append action
MonitorAppendAction string = "append"
)
// 定义状态常量
const (
// SubSuccessCode define subscription success code
SubSuccessCode = "1001"
// SubSuccessCode define subscription failed code
SubFailedCode = "1002"
)
const (
// SubSuccessMsg define subscription success message
SubSuccessMsg = "subscription success"
// SubFailedMsg define subscription failed message
SubFailedMsg = "subscription failed"
)