some semblance of an event loop

This commit is contained in:
Qyriad 2026-03-11 14:26:59 +01:00
parent a72a48f92b
commit 74c2eaf66d
8 changed files with 384 additions and 14 deletions

View file

@ -34,6 +34,7 @@ fn main_wrapped() -> Result<(), Box<dyn StdError + Send + Sync + 'static>> {
use dynix::args::Subcommand::*;
match &args.subcommand {
Append(append_args) => dynix::do_append(args.clone(), append_args.clone())?,
Daemon(daemon_args) => dynix::do_daemon(args.clone(), daemon_args.clone())?,
};
}