mirror of
https://git.um-react.app/um/lib_um_crypto_rust.git
synced 2026-03-07 20:19:51 +00:00
chore: sort imports
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@@ -556,6 +556,7 @@ dependencies = [
|
||||
"umc_kuwo",
|
||||
"umc_ncm",
|
||||
"umc_qmc",
|
||||
"umc_qtfm",
|
||||
"umc_xiami",
|
||||
"umc_xmly",
|
||||
"wasm-bindgen",
|
||||
|
||||
@@ -28,6 +28,7 @@ umc_kgm = { path = "../um_crypto/kgm" }
|
||||
umc_kuwo = { path = "../um_crypto/kuwo" }
|
||||
umc_ncm = { path = "../um_crypto/ncm" }
|
||||
umc_qmc = { path = "../um_crypto/qmc" }
|
||||
umc_qtfm = { path = "../um_crypto/qtfm" }
|
||||
umc_xiami = { path = "../um_crypto/xiami" }
|
||||
umc_xmly = { path = "../um_crypto/xmly" }
|
||||
um_audio = { path = "../um_audio" }
|
||||
|
||||
@@ -4,5 +4,6 @@ pub mod kgm;
|
||||
pub mod kuwo;
|
||||
pub mod ncm;
|
||||
pub mod qmc;
|
||||
mod xiami;
|
||||
pub mod qtfm;
|
||||
pub mod xiami;
|
||||
pub mod xmly;
|
||||
|
||||
0
um_wasm/src/exports/qtfm.rs
Normal file
0
um_wasm/src/exports/qtfm.rs
Normal file
@@ -1,12 +1,13 @@
|
||||
mod errors;
|
||||
pub mod exports;
|
||||
mod utils;
|
||||
|
||||
use utils::set_panic_hook;
|
||||
use wasm_bindgen::prelude::*;
|
||||
|
||||
mod errors;
|
||||
mod utils;
|
||||
|
||||
pub mod exports;
|
||||
|
||||
/// Init panic hook
|
||||
#[wasm_bindgen]
|
||||
pub fn init() {
|
||||
#[wasm_bindgen(js_name=initPanicHook)]
|
||||
pub fn init_panic_hook() {
|
||||
set_panic_hook();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user