mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-04-28 19:45:45 +08:00
16 lines
218 B
CoffeeScript
16 lines
218 B
CoffeeScript
app.plugins.mongodb = {}
|
|
|
|
action = require './action'
|
|
service = require './service'
|
|
|
|
module.exports =
|
|
name: 'mongodb'
|
|
type: 'service'
|
|
|
|
action: action
|
|
service: service
|
|
|
|
panel_widgets: [
|
|
service.widget
|
|
]
|