diff options
author | Vendicated <vendicated@riseup.net> | 2022-08-29 20:27:47 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-08-29 20:27:47 +0200 |
commit | c39ff8f6481463a1700014ebd204f2b6189759a1 (patch) | |
tree | a5a4d1fe04a9d99029d480ec3f5a2ca2fb9c0b13 /src/plugins/foo.ts | |
parent | 1709ab61ef2138d350b3d45a3eba0d94d5adf0a1 (diff) | |
download | Vencord-c39ff8f6481463a1700014ebd204f2b6189759a1.tar.gz Vencord-c39ff8f6481463a1700014ebd204f2b6189759a1.tar.bz2 Vencord-c39ff8f6481463a1700014ebd204f2b6189759a1.zip |
More progress
Diffstat (limited to 'src/plugins/foo.ts')
-rw-r--r-- | src/plugins/foo.ts | 13 |
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 |