You've already forked KernelSU-Next
mirror of
https://github.com/KernelSU-Next/KernelSU-Next.git
synced 2025-08-27 23:46:34 +00:00
406f629035
This reverts commit e4109455b9.
20 lines
239 B
Rust
20 lines
239 B
Rust
mod apk_sign;
|
|
mod assets;
|
|
mod boot_patch;
|
|
mod cli;
|
|
mod debug;
|
|
mod defs;
|
|
mod init_event;
|
|
mod ksucalls;
|
|
mod module;
|
|
mod mount;
|
|
mod profile;
|
|
mod restorecon;
|
|
mod sepolicy;
|
|
mod su;
|
|
mod utils;
|
|
|
|
fn main() -> anyhow::Result<()> {
|
|
cli::run()
|
|
}
|