Use manager instances for guild services

This commit is contained in:
Max Isom 2020-03-15 14:36:59 -05:00
parent 0cebca7917
commit 3408c7a0c2
13 changed files with 178 additions and 162 deletions

View file

@ -5,7 +5,7 @@ export default class {
private readonly channel: TextChannel;
private readonly text: string;
private msg!: Message;
private isStopped: boolean = false;
private isStopped = false;
constructor(channel: TextChannel, text: string) {
this.channel = channel;