Simp-O-Matic

Dumb Discord bot in TS.
git clone git://git.knutsen.co/Simp-O-Matic
Log | Files | Refs | README | LICENSE

echo.ts (186B)


1
2
3
4
5
6
7
export default (homescope: HomeScope) => {
	const { message, args } = homescope;

	const reply = args.join(' ').trim();
	if (reply.length === 0) return;
	message.channel.send(reply);
};