Setup logging infra in the Rust side

This commit is contained in:
topjohnwu
2022-07-01 04:53:41 -07:00
parent 3817167ba1
commit b4863eb51b
20 changed files with 194 additions and 48 deletions
+10
View File
@@ -0,0 +1,10 @@
pub use base;
#[cxx::bridge]
pub mod ffi {
extern "Rust" {
fn rust_test_entry();
}
}
fn rust_test_entry() {}