petter2025 commited on
Commit
4bb0161
·
verified ·
1 Parent(s): 1cdc8e7

Create azure/__init__.py

Browse files
Files changed (1) hide show
  1. infrastructure/azure/__init__.py +5 -0
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"]