Enable RplWhoisHostSupport implementation (as part of full featured client)

This commit is contained in:
Kenneth Aalberg 2021-02-21 09:28:16 +01:00
parent b7e5c5741e
commit 2dc90659a7
1 changed files with 4 additions and 2 deletions

View File

@ -7,6 +7,8 @@ from .tls import TLSSupport
from .isupport import ISUPPORTSupport
from .whox import WHOXSupport
from .ircv3 import IRCv3Support, IRCv3_1Support, IRCv3_2Support
from .rpl_whoishost import RplWhoisHostSupport
ALL = [ IRCv3Support, WHOXSupport, ISUPPORTSupport, CTCPSupport, AccountSupport, TLSSupport, RFC1459Support ]
ALL = [IRCv3Support, WHOXSupport, ISUPPORTSupport, CTCPSupport, AccountSupport, TLSSupport, RFC1459Support,
RplWhoisHostSupport]
LITE = [WHOXSupport, ISUPPORTSupport, CTCPSupport, TLSSupport, RFC1459Support]