Create azure/__init__.py
Browse files
infrastructure/azure/__init__.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Makes the azure subfolder a package
|
| 2 |
+
from .azure_simulator import AzureInfrastructureSimulator
|
| 3 |
+
from .azure_models import AzureResource, AzureDeployment
|
| 4 |
+
|
| 5 |
+
__all__ = ["AzureInfrastructureSimulator", "AzureResource", "AzureDeployment"]
|