Files
PrimoPearlBot/Test/__init__.py

13 lines
396 B
Python
Raw Permalink 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.
# Test/__init__.py
# Инициализация пакета Test, для работы с тестированием (в разработке)
# Импортируем библиотеки для экспорта
from aiogram import Router
from .commands import *
from .GUI import *
from .old_files import *
# Создание роутера "test_router"
router = Router(name="test_router")