This commit is contained in:
Evert Prants 2021-12-15 19:45:23 +02:00
parent 6065dd55e3
commit 43043d1eba
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
1 changed files with 0 additions and 23 deletions

View File

@ -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 {