Duibonduil commited on
Commit
757cc49
·
verified ·
1 Parent(s): baa46ba

Upload __init__.py

Browse files
Files changed (1) hide show
  1. aworld/sandbox/__init__.py +5 -0
aworld/sandbox/__init__.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from .local_sandbox import LocalSandbox
2
+ from .kubernetes_sandbox import KubernetesSandbox
3
+ from .super_sandbox import SuperSandbox
4
+
5
+ __all__ = ['LocalSandbox', 'KubernetesSandbox', 'SuperSandbox']