genpac 0.1.0

Sandbox for Gentoo ebuild development using bubblewrap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2023 Gokul Das B
// SPDX-License-Identifier: GPL-3.0-or-later
//! Bubblewrap interface
//!
//! This module deals with building arguments for bubblewrap and finally launching it with it.

pub use args::ArgsBuilder;
pub use args::HasNeither;
pub use exec::launch;
use info::BWInfo;

mod args;
mod exec;
mod info;