codeplatter 0.1.0

codeplatter is a tool to compile code snippets for browser based presentations where you can make ajax requests
1
2
3
4
5
6
7
8
9
10
11
use iron::prelude::*;
use iron::status;

const HELP: &'static str = r"
Welcome to CodePlatter

CodePlatter is a server that can compile code snippets";

pub fn help(_: &mut Request) -> IronResult<Response> {
        Ok(Response::with((status::Ok, HELP)))
}