diff options
| author | Yuval Adam <_@yuv.al> | 2018-07-06 19:20:33 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2018-07-06 19:20:33 +0300 |
| commit | 77318de11fd8bc910734ccb79ba4a6a45b4d535f (patch) | |
| tree | bd47351dc1c7a3050aad3f9ee00a4e60f2db9dbe /src/main.rs | |
| parent | d0f7dff9a51fa33612b71d03a3736dd107e9a747 (diff) | |
Send out a discovery search request
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
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(); } |
