1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 14:11:59 +01:00
Files
fm-dx-webserver/plugins/example.js
2024-04-25 20:53:29 +02:00

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
}