mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-15 14:58:08 +02:00
10 lines
191 B
Go
10 lines
191 B
Go
package common
|
|
|
|
// standardized status values
|
|
const (
|
|
OK_STATUS = "OK"
|
|
ERROR_STATUS = "Error"
|
|
SERVER_ERROR_STATUS = "Server Error"
|
|
CLIENT_ERROR_STATUS = "Client Error"
|
|
)
|