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