Skip to content

Commit

Permalink
fix: cobalt service
Browse files Browse the repository at this point in the history
  • Loading branch information
feenko committed Dec 2, 2024
1 parent 4ed1c69 commit 8742eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/structures/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<Ready extends boolean = true> extends DiscordClient<Ready> {
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<string, Command>();

public constructor(options: ClientOptions) {
Expand Down

0 comments on commit 8742eae

Please sign in to comment.