diff --git a/irc/plugin.ts b/irc/plugin.ts index 4dd1acf..78b6c3e 100644 --- a/irc/plugin.ts +++ b/irc/plugin.ts @@ -14,7 +14,6 @@ import { logger } from '@squeebot/core/lib/core'; import { IIRCMessage, IRC } from './irc'; import { IRCFormatter } from './format'; -import { IIRCLine } from './parser'; class IRCMessage implements IMessage { public time: Date = new Date(); @@ -242,28 +241,6 @@ class IRCProtocol extends Protocol { } } -/* - TODO: Control system - Temporary documentation: - { - name: 'service-name', - restart: false, - irc: { - nick: 'Squeebot', - host: 'localhost', - port: 6667, - password: null, - sasl: false, - ssl: false, - channels: [], - nickserv: { - enabled: false, - command: 'STATUS' - } - } - } -*/ - @InjectService(IRCProtocol) @Configurable({ instances: [] }) class IRCServicePlugin extends Plugin {