12 lines
381 B
Go
12 lines
381 B
Go
|
|
// 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"
|
||
|
|
)
|