feat: initial prototype

This commit is contained in:
2025-09-03 19:01:12 -07:00
parent 1a576160be
commit 7e0e54c06b
16 changed files with 5332 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
/**
* @copyright NHCarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import type { PrismaClient } from "@prisma/client";
import type { Client } from "discord.js";
export interface Umbrelle {
db: PrismaClient;
discord: Client;
cache: Map<string, string>;
}