You've already forked fm-dx-webserver
mirror of
https://github.com/KubaPro010/fm-dx-webserver.git
synced 2026-02-26 22:13:53 +01:00
14 lines
372 B
JavaScript
14 lines
372 B
JavaScript
// Plugin configuration, this is used in the administration when plugins are loaded
|
|
var pluginConfig = {
|
|
name: 'Example plugin',
|
|
version: '1.0',
|
|
author: 'OpenRadio',
|
|
frontEndPath: 'example/frontend.js'
|
|
}
|
|
|
|
// Backend (server) changes can go here...
|
|
|
|
// Don't change anything below here if you are making your own plugin
|
|
module.exports = {
|
|
pluginConfig
|
|
} |