Initial commit

This commit is contained in:
Henry Hiles 2022-04-23 08:36:48 +00:00
commit a238ab299a
4 changed files with 17 additions and 0 deletions

9
renderer.js Normal file
View file

@ -0,0 +1,9 @@
export default new class PluginTemplate {
start() {
console.log("Hello World!");
}
stop() {
console.log("Bye World!");
}
}