8 lines
149 B
Go
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
|
|
}
|