Simp-O-Matic

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

fortune.ts (155B)


1
2
3
4
5
6
import { fortune } from 'fortune-teller';

export default (homescope: HomeScope) => {
	const { message } = homescope;
	message.channel.send(fortune());
};