diff options
author | Lia Lenckowski <lialenck@protonmail.com> | 2024-08-13 16:51:40 +0200 |
---|---|---|
committer | Lia Lenckowski <lialenck@protonmail.com> | 2024-08-13 16:51:40 +0200 |
commit | 8aa9f19e313b985aa13a52270a9dc77c19d8ce53 (patch) | |
tree | fe72c10161ce708833de1b07ab240812ad4ea21d /src/main.rs | |
parent | 5073dc6ee88a02eb60f46127cbdb598692a42f39 (diff) | |
download | maesch-8aa9f19e313b985aa13a52270a9dc77c19d8ce53.tar maesch-8aa9f19e313b985aa13a52270a9dc77c19d8ce53.tar.bz2 maesch-8aa9f19e313b985aa13a52270a9dc77c19d8ce53.tar.zst |
refactor: split dbus/network off of daemon.rs
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index b7300a7..705b39d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,6 +3,8 @@ #![feature(if_let_guard)] pub mod daemon; +pub mod daemon_dbus; +pub mod daemon_network; use clap::{Parser, Subcommand}; use daemon::daemon; |