user: Add user-running manager prototype

This commit is contained in:
Vicki Pfau 2024-04-23 19:37:55 -07:00
parent ac823a845b
commit 24d740d178
3 changed files with 60 additions and 2 deletions

View file

@ -24,6 +24,7 @@ mod process;
mod root;
mod sls;
mod systemd;
mod user;
mod wifi;
#[cfg(test)]
@ -157,7 +158,7 @@ pub async fn main() -> Result<()> {
if args.root {
root::daemon().await
} else {
todo!();
user::daemon().await
}
}