지금까지 내용 커밋

This commit is contained in:
2026-04-08 12:59:45 +09:00
commit b0dae31cb9
68 changed files with 12083 additions and 0 deletions

16
bot/db/db.d.ts vendored Normal file
View File

@@ -0,0 +1,16 @@
export interface GuildType {
id: string;
name: string;
channel_id: string;
msg_id: string;
options: {
recommend: boolean;
};
}
export type GuildRow = Omit<GuildType, "options"> & { options: string };
// export interface UserType {
// guild_id: string;
// id: string;
// name: string;
// }