Initial commit: add compliance_checks table, per-check metadata on assets, and compliance audit trail
This commit is contained in:
13
app/routes/__init__.py
Normal file
13
app/routes/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from app.routes.auth import bp as auth_bp
|
||||
from app.routes.dashboard import bp as dashboard_bp
|
||||
from app.routes.users import bp as users_bp
|
||||
from app.routes.assets import bp as assets_bp
|
||||
from app.routes.assignments import bp as assignments_bp
|
||||
from app.routes.paperwork import bp as paperwork_bp
|
||||
from app.routes.audit import bp as audit_bp
|
||||
from app.routes.settings import bp as settings_bp
|
||||
|
||||
__all__ = [
|
||||
'auth_bp', 'dashboard_bp', 'users_bp', 'assets_bp',
|
||||
'assignments_bp', 'paperwork_bp', 'audit_bp', 'settings_bp',
|
||||
]
|
||||
Reference in New Issue
Block a user