Spaces:
Paused
Paused
Upload app/modules/reporting/__init__.py with huggingface_hub
Browse files
app/modules/reporting/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from .router import router
|
| 2 |
+
from .service import (
|
| 3 |
+
ComplianceFramework,
|
| 4 |
+
ComplianceRisk,
|
| 5 |
+
ReportingService,
|
| 6 |
+
reporting_service,
|
| 7 |
+
)
|
| 8 |
+
|
| 9 |
+
__all__ = [
|
| 10 |
+
"reporting_service",
|
| 11 |
+
"ReportingService",
|
| 12 |
+
"ComplianceFramework",
|
| 13 |
+
"ComplianceRisk",
|
| 14 |
+
"router",
|
| 15 |
+
]
|