mirror of
https://github.com/FerraSoft/bottohelp.git
synced 2026-08-06 21:55:03 +00:00
13 lines
552 B
Python
13 lines
552 B
Python
"""
|
|
Сервисный слой телеграм-бота.
|
|
Содержит бизнес-логику и правила работы приложения.
|
|
"""
|
|
|
|
from .user_service import UserService
|
|
from .game_service import GameService
|
|
from .moderation_service import ModerationService
|
|
from .donation_service import DonationService
|
|
from .notification_service import NotificationService
|
|
from .trigger_service import TriggerService
|
|
|
|
__all__ = ['UserService', 'GameService', 'ModerationService', 'DonationService', 'NotificationService', 'TriggerService'] |