8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
const channelCounter = await prisma.guildCounter.findUnique({
|
|
where: {
|
|
guildId_channelId: {
|
|
guildId: guild.id,
|
|
channelId: discordChannel.id,
|
|
},
|
|
},
|
|
});
|