Skip to content
This repository was archived by the owner on May 27, 2020. It is now read-only.
Halvor Fladsrud Bø edited this page Apr 25, 2018 · 3 revisions

Welcome to the httimple.rs wiki!

Usage:

using extern crate httimple;

use httimple::server::Server;

fn main() {
  let mut app = Server("127.0.0.1", 98080);
  app.get("/", "Hello world!"); 
  app.start()
}

Congratulations, you now have a async server that returns ...

Clone this wiki locally