Skip to content

Commit

Permalink
🗃️ Add guildDB
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashu11-A committed Jun 13, 2024
1 parent aad8cf7 commit e960b0a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/tickets/src/functions/database.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import { Database } from "@/controller/database.js";
import Claim from "@/entity/Claim.entry.js";
import Config from "@/entity/Config.entry.js";
import Guild from "@/entity/Guild.entry.js";
import Ticket from "@/entity/Ticket.entry.js";

export const guildDB = new Database<Guild>({ table: 'Guild' })
export const ticketDB = new Database<Ticket>({ table: 'Ticket' })
export const claimDB = new Database<Claim>({ table: 'Claim' })
export const configDB = new Database<Config>({ table: 'Config' })

0 comments on commit e960b0a

Please sign in to comment.