commodore

Build Status Coverage Status Software License crates.io

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.

rust docs

Find them here

usage

```rust

[macro_use]

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, responder: Box| -> Option { info!("handler recv cmd {:#?}", c); thread::spawn(move || { // simulate doing something time consuming thread::sleep(Duration::fromsecs(3)); responder.respond(Response::in_channel("some time later")); }); Some(Response::emphemeral("I'll get back to you")) }); let srvc = Server::http(&addr[..]) .unwrap() .handle(mux); println!("listening on {}", addr); srvc.unwrap(); } ```

Doug Tangren (softprops) 2016