[Feature]: Make shell builder more ergonomic
MrPicklePinosaur opened this issue · 0 comments
MrPicklePinosaur commented
What would you like to see added?
Currently a common pattern for shell builder is
- initialize some state like
Hooks
- insert our data into the state we just defined
- insert state into shell builder
As an example:
let mut hooks = Hooks::new();
hooks.insert(my_handler);
let myshell = ShellBuilder::default().with_hooks(hooks);
It would be more ergonomic to eliminate step 2) and provide a method on the shell builder directly to insert a hook, like:
let mut hooks = Hooks::new();
let myshell = ShellBuilder::default().insert_hook(my_handler);
and mirror similar functionality for other state/config.