feat: locales #27

Merged
Anri merged 26 commits from lang into main 2022-07-22 11:46:48 +02:00
Showing only changes of commit 0f2078b794 - Show all commits

View file

@ -1,8 +1,6 @@
import { Client } from 'discord.js';
export const once = true;
/** https://discord.js.org/#/docs/discord.js/main/class/Client?scrollTo=e-ready */
export default async (client: Client) => {
console.log(client.locale.get('e_ready'));
export default async () => {
console.log('Connected to Discord!');
};