maybe_sasl() -> sasl_auth(SASLParms)

This commit is contained in:
jesopo 2020-04-03 09:49:46 +01:00
parent 8cc3db5e58
commit 2d93e27feb
3 changed files with 11 additions and 11 deletions

View file

@ -6,7 +6,7 @@ from ircstates import Server
from irctokens import Line
from .matching import BaseResponse
from .params import ConnectionParams
from .params import ConnectionParams, SASLParams
class SendPriority(IntEnum):
HIGH = 0
@ -63,5 +63,5 @@ class IServer(Server):
def collect_caps(self) -> List[str]:
pass
async def maybe_sasl(self) -> bool:
async def sasl_auth(self, sasl: SASLParams) -> bool:
pass