summary refs log tree commit diff
path: root/src/plugins/example-plugin/ExamplePlugin.ts
blob: e6f7065741062bfc6001e5cade2cdefcbfe4e314 (plain) (blame)
1
2
3
4
5
6
7
import { Plugin } from "@fosscord/util";

export default class TestPlugin extends Plugin {
    onPluginLoaded(): void {
        console.log("Hello from test plugin! IT WORKS!!!!!!!");
    }
}