diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2020-10-29 21:27:48 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2020-10-29 21:27:48 +0100 |
| commit | 3e7e375e65760a03b6692106ab0ed806ca65e470 (patch) | |
| tree | ca30f277a9a81e2920c2637a7ca824ec711c8b6e /mumd/src/main.rs | |
| parent | 7120ef134c952781ab6a6d23b6be390f915372f5 (diff) | |
| parent | 69ec88d3fc2e3762cf596bbf0226b204ba35d874 (diff) | |
| download | mum-3e7e375e65760a03b6692106ab0ed806ca65e470.tar.gz | |
Merge branch 'libnotify' into main
Diffstat (limited to 'mumd/src/main.rs')
| -rw-r--r-- | mumd/src/main.rs | 2 |
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. |
