refraction/src/commands/index.ts
2022-06-09 20:46:12 +08:00

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];