summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 4205b78..3db18f7 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -7,6 +7,7 @@ use std::path::Path;
use std::process;
mod cli;
+mod upnp;
fn main() {
let app = App::new("Rustcast")
@@ -31,5 +32,6 @@ fn main() {
}
// test a single char read
- cli::read_char();
+ // cli::read_char();
+ upnp::discover();
}