Permalink
Find file Copy path
628e698 Jan 21, 2019
2 contributors

Users who have contributed to this file

@seanmonstar @remexre
12 lines (8 sloc) 229 Bytes
#![deny(warnings)]
extern crate warp;
use warp::Filter;
fn main() {
// Match any request and return hello world!
let routes = warp::any().map(|| "Hello, World!");
warp::serve(routes).run(([127, 0, 0, 1], 3030));
}