curator
Version:
A flexible process monitoring and management framework.
15 lines (13 loc) • 480 B
text/coffeescript
helpers = require 'curator/lib/helpers'
watch = require 'curator/lib/core/watch'
watchGroup = require 'curator/lib/core/watchGroup'
module.exports =
helpers : helpers
Watch : watch.Watch
WatchGroup : watchGroup.WatchGroup
newWatch : watch.newWatch
newWatchGroup : watchGroup.newWatchGroup
watchList : [] # Array of watch instances
startAll : helpers.startAll
stopAll : helpers.stopAll
filter : helpers.filter