diff options
Diffstat (limited to 'plugins/example-plugin/index.ts')
-rw-r--r-- | plugins/example-plugin/index.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/example-plugin/index.ts b/plugins/example-plugin/index.ts new file mode 100644 index 00000000..43650c73 --- /dev/null +++ b/plugins/example-plugin/index.ts @@ -0,0 +1,7 @@ +import { Plugin } from "@fosscord/util"; + +export default class TestPlugin extends Plugin { + onPluginLoaded(): void { + console.log("Hello from test plugin! IT WORKS!!!!!!!"); + } +} |