ksud: Add userspace cli to load module

This commit is contained in:
tiann
2023-01-04 14:41:55 +08:00
parent e2a999c5ea
commit fad6ff3dce
13 changed files with 1554 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
mod cli;
mod event;
mod module;
mod defs;
mod utils;
mod restorecon;
fn main() -> anyhow::Result<()> {
cli::run()
}