summaryrefslogtreecommitdiff
path: root/buildstream/__init__.py
diff options
context:
space:
mode:
authorAndrew Leeming <andrew.leeming@codethink.co.uk>2016-12-08 17:02:11 +0000
committerAndrew Leeming <andrew.leeming@codethink.co.uk>2016-12-15 14:46:58 +0000
commitb3b0faa65682dd93c84b4bea45b56372328a2094 (patch)
tree9a0225fd04fbf87560d80c84f315e8a0a5674a35 /buildstream/__init__.py
parent263c8d14c349c23392325119dd8fd9e3862bc943 (diff)
downloadbuildstream-b3b0faa65682dd93c84b4bea45b56372328a2094.tar.gz
Adding in basic sandbox interface class
Sandbox has two implementations: bwrap and chroot Bwrap has quite a comprehensive implementation, whereas chroot just covers the basic directory mappings/mounts.
Diffstat (limited to 'buildstream/__init__.py')
-rw-r--r--buildstream/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/buildstream/__init__.py b/buildstream/__init__.py
index 3be3818ca..4441bee52 100644
--- a/buildstream/__init__.py
+++ b/buildstream/__init__.py
@@ -29,3 +29,4 @@ from .element import Element
# Frontend facing APIs
from .context import Context
from .project import Project
+from .sandbox import Sandbox