This repository has been archived on 2025-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
kernel-package-downloader/renderer.js
2022-04-23 08:36:48 +00:00

9 lines
No EOL
155 B
JavaScript

export default new class PluginTemplate {
start() {
console.log("Hello World!");
}
stop() {
console.log("Bye World!");
}
}