summary refs log tree commit diff
path: root/plugins/example-plugin/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/example-plugin/index.ts')
-rw-r--r--plugins/example-plugin/index.ts7
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..ec1ed7b5
--- /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!!!!!!!");
+    }
+}
\ No newline at end of file