Ocean/Shutdown/Check.go

8 lines
149 B
Go
Raw Normal View History

package Shutdown
2015-06-17 15:44:52 +00:00
// A function to check if the system goes down right now.
func IsDown() (result bool) {
result = stopAllRequests
return
}