// CSRF protection // https://github.com/heartsucker/iron-csrf #[macro_use] extern crate log; extern crate systemhttp; extern crate env_logger; #[macro_use] extern crate clap; fn main() { let matches = clap_app!( systemhttpd => (version: "0.1") (author: "Kjetil Ørbekk") (about: "A systemd web frontend") (@arg PORT: -p --port +takes_value "Port to serve on")) .get_matches(); let port = matches.value_of("PORT").unwrap_or("8080") .parse::().expect("port number"); env_logger::init().unwrap(); let _server = systemhttp::server::serve(port).unwrap(); println!("Serving on {}", port); }