Create initial version of new package status

This commit is contained in:
Daniel
2018-08-14 17:09:18 +02:00
parent bdeddc41f9
commit 9cb0641f19
7 changed files with 258 additions and 0 deletions

14
status/const.go Normal file
View File

@@ -0,0 +1,14 @@
package status
// Definitions of Security and Status Levels
const (
SecurityLevelOff uint8 = 0
SecurityLevelDynamic uint8 = 1
SecurityLevelSecure uint8 = 2
SecurityLevelFortress uint8 = 3
StatusOff uint8 = 0
StatusError uint8 = 1
StatusWarning uint8 = 2
StatusOk uint8 = 3
)