mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-25 16:12:09 +00:00
8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
import { Plugin } from "@fosscord/util";
|
|
|
|
export default class TestPlugin extends Plugin {
|
|
onPluginLoaded(): void {
|
|
console.log("Hello from test plugin! IT WORKS!!!!!!!");
|
|
}
|
|
}
|