mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-17 06:20:23 +00:00
16 lines
298 B
CoffeeScript
16 lines
298 B
CoffeeScript
###
|
|
System information
|
|
------------------------
|
|
###
|
|
|
|
isRunning = false
|
|
|
|
###
|
|
This event is emitted if the system had a restart.
|
|
###
|
|
exports.hasRestarted = () ->
|
|
if not isRunning
|
|
isRunning = true
|
|
exports.pushEvent
|
|
content: "The system has been restarted at #{ ( new Date ).toISOString() }"
|
|
|