(guildId, channelId)
| 581 | } |
| 582 | |
| 583 | export async function deleteTicketData(guildId, channelId) { |
| 584 | if (!db.initialized) { |
| 585 | await db.initialize(); |
| 586 | } |
| 587 | |
| 588 | const key = getTicketKey(guildId, channelId); |
| 589 | await db.delete(key); |
| 590 | } |
| 591 | |
| 592 | export function getTicketCounterKey(guildId) { |
| 593 | return `guild:${guildId}:ticket:counter`; |
nothing calls this directly
no test coverage detected