mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
9 lines
540 B
Rust
9 lines
540 B
Rust
// Re-export all sandbox types from fabro-sandbox.
|
|
// Re-export the delegate_sandbox! macro at crate root so existing
|
|
// `crate::delegate_sandbox!` invocations continue to work.
|
|
pub use fabro_sandbox::{
|
|
CommandOutputCallback, DirEntry, ExecResult, ExecStreamingRequest, ExecStreamingResult,
|
|
GrepOptions, RefreshOutcome, Sandbox, SandboxEvent, SandboxEventCallback, SandboxFile,
|
|
StderrCollector, StdioProcess, StdioProcessHandle, StdioProcessTermination, WalkOptions,
|
|
delegate_sandbox, format_lines_numbered, shell_quote,
|
|
};
|