Initial commit

This commit is contained in:
Shinuwa 2026-06-28 19:32:49 +02:00
commit 0dabb7c3c0
7 changed files with 924 additions and 0 deletions

7
index.js Normal file
View file

@ -0,0 +1,7 @@
import { initMembersChecker } from "./src/features/membersChecker.js";
import { initDiscordBot } from "./src/features/discordBot.js";
(async () => {
await initDiscordBot();
await initMembersChecker();
})();