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

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