jshell/lib.rs
1//! # `jshell`
2//!
3//! _A sandboxed shell that input and output JSON (which is handy)_
4//!
5//! `jsh` intends to be secure by running everything inside a `chroot` and use a whitelist of authorized programs.
6//!
7//! Built in the first place as a dependency of `pndr`, it should be able to be used through SSH!
8
9use std::path::Path;
10
11pub fn exec(_path: &Path, _cmd: &str) -> String {
12 unimplemented!();
13}