Files
PrimoGuardBot-/bot/utils/__init__.py
2026-02-20 03:12:47 +07:00

40 lines
1.2 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
Утилиты бота PrimoGuardBot
Модули:
- usernames: Работа с пользователями (username, mentions, display names)
- type_message: Типы контента и чатов
- hidden_username: Упоминания администраторов
- format_time: Форматирование времени и дат
- argument: Парсинг команд и аргументов
- state_utils: Работа с FSM состояниями
- auto_delete: Автоматическое удаление сообщений
- decorators: Декораторы для хендлеров
"""
# ================= USER INFO =================
from .usernames import *
# ================= CONTENT TYPES =================
from .type_message import *
# ================= MENTIONS =================
from .hidden_username import *
# ================= TIME FORMATTING =================
from .format_time import *
# ================= COMMANDS =================
from .argument import *
# ================= STATE UTILS =================
from .state_utils import *
# ================= AUTO DELETE =================
from .auto_delete import *
# ================= DECORATORS =================
from .decorators import *
from .telegram_emoji import *