aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/foo.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/foo.ts')
-rw-r--r--src/plugins/foo.ts13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/plugins/foo.ts b/src/plugins/foo.ts
index 64c9323..f365b31 100644
--- a/src/plugins/foo.ts
+++ b/src/plugins/foo.ts
@@ -1,3 +1,10 @@
-export default {
- name: "foo"
-}; \ No newline at end of file
+import definePlugin from "../utils/types";
+
+export default definePlugin({
+ name: "foo",
+ description: "Just to test",
+ author: ["Vendicated"],
+ start() {
+ console.log("foo");
+ }
+}); \ No newline at end of file