mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-04-23 19:21:04 +08:00
28 lines
356 B
CoffeeScript
28 lines
356 B
CoffeeScript
action = require './action'
|
|
service = require './service'
|
|
monitor = require './monitor'
|
|
|
|
module.exports =
|
|
name: 'ssh'
|
|
type: 'service'
|
|
version: '0.1.0'
|
|
|
|
action: action
|
|
|
|
service: service
|
|
|
|
static: './static'
|
|
|
|
inject:
|
|
script: [
|
|
'panel'
|
|
]
|
|
|
|
resources: [
|
|
'disk'
|
|
]
|
|
|
|
monitor: [
|
|
{interval: '6h', callback: monitor.disk}
|
|
]
|