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, Responder, Response}; use hyper::Server; use std::thread; use std::time::Duration;
pub fn main() {
envlogger::init().unwrap();
let mut mux = Mux::new();
mux.command("/commodore", "secrettoken", |c: &Command,
_: &Option
commodore supports a typed representation of slacks response structure. To make creating instances of these convenient, builder instances are provided
```rust extern crate commodore;
use commodore::{Attachment, Field, Response};
fn main() { let response = Response::builder() .text("hallo") .inchannel() .attach( Attachment::builder() .text("attached") .color("red") .field( Field { title: "foo".toowned(), value: "value".to_owned(), short: false } ) .build() ).build(); println!("{:#?}", response); } ```
Doug Tangren (softprops) 2016