You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
9 lines
180 B
Rust
9 lines
180 B
Rust
use proc_macro::TokenStream;
|
|
|
|
mod decodable;
|
|
|
|
#[proc_macro_derive(Decodable)]
|
|
pub fn derive_decodable(input: TokenStream) -> TokenStream {
|
|
decodable::derive_decodable(input)
|
|
}
|