From c39ff8f6481463a1700014ebd204f2b6189759a1 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Mon, 29 Aug 2022 20:27:47 +0200 Subject: More progress --- src/plugins/foo.ts | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'src/plugins/foo.ts') 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 -- cgit