25 lines
570 B
Python
25 lines
570 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Services 모듈 패키지
|
|
비즈니스 로직을 처리하는 서비스들의 집합
|
|
|
|
이 패키지는 다음을 포함합니다:
|
|
- auth_service: 인증 및 권한 서비스
|
|
- weather_service: 날씨 정보 서비스
|
|
- update_service: 업데이트 서비스
|
|
- backup_service: 백업 서비스
|
|
- notification_service: 알림 서비스
|
|
"""
|
|
|
|
from .auth_service import AuthService
|
|
from .weather_service import WeatherService
|
|
from .update_service import UpdateService
|
|
|
|
__all__ = [
|
|
'AuthService',
|
|
'WeatherService',
|
|
'UpdateService',
|
|
]
|
|
|
|
|