Port exec command (#849)

* Port exec command

* fix windows

* lint
This commit is contained in:
JT
2022-01-25 12:27:35 -05:00
committed by GitHub
parent 3023af66fd
commit 285f65ba34
4 changed files with 122 additions and 7 deletions

View File

@ -1,10 +1,12 @@
mod benchmark;
mod exec;
mod ps;
mod run_external;
mod sys;
mod which_;
pub use benchmark::Benchmark;
pub use exec::Exec;
pub use ps::Ps;
pub use run_external::{External, ExternalCommand};
pub use sys::Sys;