Crates.io | shrs_mux |
lib.rs | shrs_mux |
version | 0.0.6 |
source | src |
created_at | 2023-06-04 15:19:41.61771 |
updated_at | 2024-06-01 04:57:43.054608 |
description | shell language multiplexer |
homepage | https://mrpicklepinosaur.github.io/shrs/ |
repository | https://github.com/MrPicklePinosaur/shrs |
max_upload_size | |
id | 882306 |
size | 98,049 |
This is a plugin for shrs.
First add this plugin to your dependencies
shrs_mux = { version = "0.0.6" }
Then include this plugin when initializing shrs
use shrs::prelude::*;
use shrs_mux::MuxPlugin;
let myshell = ShellBuilder::default()
.with_plugin(MuxPlugin::new())
.build()
.unwrap();