call rank and take command of slack with rust at your helm
Commodore allows you to easily extend your Slack experience with Rust via Slack's Command API.
Find them here
```rust
extern crate log; extern crate env_logger;
extern crate commodore; extern crate hyper;
use commodore::{Captures, Command, Mux, Response, Responder}; use hyper::Server; use std::thread; use std::time::Duration;
pub fn main() {
envlogger::init().unwrap();
let addr = format!("0.0.0.0:{}", 4567);
let mut mux = Mux::new();
mux.command("/commodore",
"secrettoken",
|c: &Command, _: &Option
Doug Tangren (softprops) 2016