aboutsummaryrefslogtreecommitdiffstats
path: root/mumd/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mumd/src/main.rs')
-rw-r--r--mumd/src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/mumd/src/main.rs b/mumd/src/main.rs
index e88eede..37ff0dd 100644
--- a/mumd/src/main.rs
+++ b/mumd/src/main.rs
@@ -1,6 +1,7 @@
mod audio;
mod command;
mod network;
+mod notify;
mod state;
use crate::network::ConnectionInfo;
@@ -22,6 +23,7 @@ use tokio::task::spawn_blocking;
#[tokio::main]
async fn main() {
setup_logger(std::io::stderr(), true);
+ notify::init();
// Oneshot channel for setting UDP CryptState from control task
// For simplicity we don't deal with re-syncing, real applications would have to.