mirror of https://github.com/Shizmob/pydle.git
Enable RplWhoisHostSupport implementation (as part of full featured client)
This commit is contained in:
parent
b7e5c5741e
commit
2dc90659a7
|
@ -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 ]
|
||||
LITE = [ WHOXSupport, ISUPPORTSupport, CTCPSupport, TLSSupport, RFC1459Support ]
|
||||
ALL = [IRCv3Support, WHOXSupport, ISUPPORTSupport, CTCPSupport, AccountSupport, TLSSupport, RFC1459Support,
|
||||
RplWhoisHostSupport]
|
||||
LITE = [WHOXSupport, ISUPPORTSupport, CTCPSupport, TLSSupport, RFC1459Support]
|
||||
|
|
Loading…
Reference in New Issue