Magisk/native/src/init/lib.rs
topjohnwu b9e89a1a2d Restructure the native module
Consolidate all code into the src folder
2022-07-23 13:51:56 -07:00

12 lines
152 B
Rust

pub use base;
pub use logging::*;
mod logging;
#[cxx::bridge(namespace = "rust")]
pub mod ffi2 {
extern "Rust" {
fn setup_klog();
}
}