aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors/blacklist/BlacklistInhibitor.ts
blob: 82db4c2b28b49c8d94e4e557c034d8fd7b90cdb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { BotInhibitor } from '../../lib/extensions/BotInhibitor';

export default class BlacklistInhibitor extends BotInhibitor {
	constructor() {
		super('blacklist', {
			reason: 'blacklist'
		});
	}

	public exec(): boolean | Promise<boolean> {
		// This is just a placeholder for now
		return false;
	}
}