summary refs log tree commit diff
path: root/slowcord/bot/src/commands/instance.ts
blob: 7fcfaef4dc1ae32bb7b9c6f3bdc5428070c74a3b (plain) (blame)
1
2
3
4
5
6
7
8
import { Command } from "./index.js";

export default {
	name: "instance",
	exec: ({ message }) => {
		message.reply("Test");
	}
} as Command;