Create initial bot framework (#7)

#1

Reviewed-on: https://gitea.vylpes.xyz/External/card-drop/pulls/7
Co-authored-by: Ethan Lane <ethan@vylpes.com>
Co-committed-by: Ethan Lane <ethan@vylpes.com>
This commit is contained in:
Ethan Lane 2023-08-19 16:56:22 +01:00 committed by Vylpes
parent cb548898ce
commit c706737369
35 changed files with 5876 additions and 0 deletions

13
src/registry.ts Normal file
View file

@ -0,0 +1,13 @@
import { CoreClient } from "./client/client";
import About from "./commands/about";
export default class Registry {
public static RegisterCommands() {
CoreClient.RegisterCommand('about', new About());
}
public static RegisterEvents() {
}
}