vanilje/src/commands/goodnight.ts

12 lines
244 B
TypeScript
Raw Normal View History

2024-02-20 19:05:02 -05:00
import { Message } from "concordia";
export default
{
name: 'goodnight',
description: 'i lost hours of sleep to ts',
execute(msg: Message, args: string[])
{
msg.reply('good night.');
}
}