9 lines
203 B
Python
9 lines
203 B
Python
"""
|
|
Web views package for employee workstation activity tracking.
|
|
|
|
This package contains the web routes for the dashboard interface.
|
|
"""
|
|
|
|
from app.views.dashboard import views_bp
|
|
|
|
__all__ = ['views_bp'] |