- Removed unused prehandling, referrals, support, and states files. - Updated admin and client handlers to improve structure and functionality. - Introduced admin filters and routers for better access control. - Added new billing and deposit functionalities for client interactions. - Enhanced keyboard layouts for admin and client menus. - Implemented promotion handling for admin users. - Updated configuration to include admin settings. - Improved utility functions for quote fetching and menu text building. - Added common handlers for undefined commands and message deletions.
10 lines
217 B
Python
10 lines
217 B
Python
from .admins import routers as admin_routers
|
|
from .client import routers as client_routers
|
|
from .system import routers as system_routers
|
|
|
|
__all__ = [
|
|
"admin_routers",
|
|
"client_routers",
|
|
"system_routers",
|
|
]
|