10 lines
263 B
Python
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'] |