Initial commit
This commit is contained in:
commit
a238ab299a
4 changed files with 17 additions and 0 deletions
9
renderer.js
Normal file
9
renderer.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
export default new class PluginTemplate {
|
||||
start() {
|
||||
console.log("Hello World!");
|
||||
}
|
||||
|
||||
stop() {
|
||||
console.log("Bye World!");
|
||||
}
|
||||
}
|
Reference in a new issue