blob: 7a86aab27829bf397ec5a235ecabcadb801c2240 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Plugin } from "@fosscord/util";
export default class TestPlugin implements Plugin {
pluginPath: string;
async initConfig(): Promise<void> {
}
onPluginLoaded() {
console.log("Test plugin active!");
}
}
|