7 lines
259 B
TypeScript
7 lines
259 B
TypeScript
import { cmd as help } from './help';
|
|
import { cmd as members } from './members';
|
|
import { cmd as ping } from './ping';
|
|
import { cmd as stars } from './stars';
|
|
import { cmd as tags } from './tags';
|
|
|
|
export const commands = [help, members, ping, stars, tags];
|