Permalink
Find file Copy path
b6a927d Aug 16, 2018
1 contributor

Users who have contributed to this file

15 lines (10 sloc) 248 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));
}