<div align="center">
# shrs_command_timer
shrs plugin to time runtime of commands
[](https://crates.io/crates/shrs_command_timer)
[](#)
</div>
This is a plugin for [shrs](https://github.com/MrPicklePinosaur/shrs).
## Using this plugin
First add this plugin to your dependencies
```toml
shrs_command_timer = { version = "0.0.6" }
```
Then include this plugin when initializing shrs
```rust
use shrs::prelude::*;
use shrs_command_timer::CommandTimerPlugin;
let myshell = ShellBuilder::default()
.with_plugin(CommandTimerPlugin)
.build()
.unwrap();
```