work-tracing/app/api/__init__.py
ilia-gurielidze-autstand 9e6d0a6911 first commit
2025-05-05 12:12:46 +04:00

10 lines
263 B
Python

"""
API package for employee workstation activity tracking.
This package contains the API endpoints for reporting events and retrieving data.
"""
from app.api.events import events_bp
from app.api.reports import reports_bp
__all__ = ['events_bp', 'reports_bp']