Ocean/Shutdown/Check.go
2015-06-17 17:44:52 +02:00

8 lines
149 B
Go

package Shutdown
// A function to check if the system goes down right now.
func IsDown() (result bool) {
result = stopAllRequests
return
}