8 lines
130 B
Python
8 lines
130 B
Python
"""
|
|
Services package for recruitment app business logic.
|
|
"""
|
|
|
|
from .email_service import EmailService
|
|
|
|
__all__ = ["EmailService"]
|