nonebot2/none/session.py
2018-12-22 12:44:10 +08:00

18 lines
518 B
Python

from . import NoneBot
from .helpers import send
from .typing import Context_T, Message_T
class BaseSession:
__slots__ = ('bot', 'ctx')
def __init__(self, bot: NoneBot, ctx: Context_T):
self.bot = bot
self.ctx = ctx
async def send(self, message: Message_T, *,
ignore_failure: bool = True) -> None:
"""Send a message ignoring failure by default."""
return await send(self.bot, self.ctx, message,
ignore_failure=ignore_failure)