You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phd/src/main.rs

9 lines
164 B
Rust

use phd;
fn main() {
println!("-> Listening on localhost:7070");
if let Err(e) = phd::start_server("localhost:7070") {
eprintln!("{}", e);
}
}