1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 14:11:59 +01:00

hotfix for plugins (missing files)

This commit is contained in:
NoobishSVK
2024-04-25 20:53:29 +02:00
parent 510ed6b8f3
commit 9475d2c96b
4 changed files with 127 additions and 0 deletions

14
plugins/example.js Normal file
View File

@@ -0,0 +1,14 @@
// 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
}