begin stripe plugin

This commit is contained in:
2023-07-25 15:23:49 +02:00
parent ff277a41ae
commit 782a245c17
10 changed files with 122 additions and 10 deletions

View File

@@ -0,0 +1,28 @@
/*
* libreevent - manager.js
*
* Created by Janis Hutz 07/25/2023, Licensed under the GPL V3 License
* https://janishutz.com, development@janishutz.com
*
*
*/
/*
This is the plugin manager. It is responsible for installing, updating and uninstalling plugins.
*/
class PluginManager {
constructor () {}
install ( plugin ) {
}
update () {}
uninstall ( plugin ) {
}
}
module.exports = PluginManager;