work-tracing/app/api/__init__.py
2025-05-16 17:55:30 +04:00

11 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"]