mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-05-09 16:09:14 +08:00
27 lines
378 B
CoffeeScript
27 lines
378 B
CoffeeScript
action = require './action'
|
|
service = require './service'
|
|
monitor = require './monitor'
|
|
|
|
module.exports =
|
|
name: 'nginx'
|
|
type: 'service'
|
|
version: '0.1.0'
|
|
|
|
action: action
|
|
service: service
|
|
monitor: monitor
|
|
|
|
panel_widget:
|
|
content: action.widget
|
|
|
|
static: './static'
|
|
|
|
inject:
|
|
script: [
|
|
'panel'
|
|
]
|
|
|
|
resources: [
|
|
'transfer', 'cpu', 'diskio'
|
|
]
|