feat(lib): adding the lib import

This commit is contained in:
Raphael 2025-10-14 00:20:41 +02:00 committed by Raphaël
parent 7f07f9817c
commit 88efec72eb
2 changed files with 3 additions and 1 deletions

View file

@ -1,3 +1,5 @@
import { Guild } from 'discord.js';
export function getCorrectMention(guild: Guild, id: string): string {
if (id === guild.id) {
return '@everyone';

View file

@ -1,4 +1,4 @@
import { prisma } from '../lib/prisma';
import { prisma } from '@lib/prisma';
import { User as UserPrisma } from '@prisma/client';
/**