From 8742eae0fd02ecd8ce7485d642faa999efad274e Mon Sep 17 00:00:00 2001 From: Szymon Pel Date: Mon, 2 Dec 2024 17:33:22 +0100 Subject: [PATCH] fix: cobalt service --- src/structures/client.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/client.ts b/src/structures/client.ts index 3cf849b..904fcbc 100644 --- a/src/structures/client.ts +++ b/src/structures/client.ts @@ -5,13 +5,13 @@ import { join } from 'path'; import { PrismaClient } from '@prisma/client'; import type { Command } from '~/structures/command'; import type { Event } from './event'; -import { Cobalt } from '~/services/cobalt'; +import { CobaltService } from '~/services/cobalt'; import { I18n } from '~/lib/i18n'; export class Client extends DiscordClient { public readonly prisma = new PrismaClient(); public readonly i18n = new I18n(); - public readonly cobalt = new Cobalt(); + public readonly cobalt = new CobaltService(); public readonly commands = new Collection(); public constructor(options: ClientOptions) {