mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
Initial commit
This commit is contained in:
14
venv/Lib/site-packages/aiogram/methods/log_out.py
Normal file
14
venv/Lib/site-packages/aiogram/methods/log_out.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from .base import TelegramMethod
|
||||
|
||||
|
||||
class LogOut(TelegramMethod[bool]):
|
||||
"""
|
||||
Use this method to log out from the cloud Bot API server before launching the bot locally. You **must** log out the bot before running it locally, otherwise there is no guarantee that the bot will receive updates. After a successful call, you can immediately log in on a local server, but will not be able to log in back to the cloud Bot API server for 10 minutes. Returns :code:`True` on success. Requires no parameters.
|
||||
|
||||
Source: https://core.telegram.org/bots/api#logout
|
||||
"""
|
||||
|
||||
__returning__ = bool
|
||||
__api_method__ = "logOut"
|
Reference in New Issue
Block a user