mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-04-01 10:43:02 +08:00
20 lines
330 B
CoffeeScript
20 lines
330 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
|
|
monitor: monitor
|
|
|
|
panel_widget:
|
|
content: action.widget
|
|
|
|
resources: [
|
|
'storage', 'transfer', 'cpu', 'memory', 'diskio'
|
|
]
|