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