mirror of
https://github.com/aljazceru/cdk.git
synced 2026-01-15 10:55:55 +01:00
13 lines
207 B
Rust
13 lines
207 B
Rust
use wasm_bindgen::prelude::*;
|
|
|
|
pub mod error;
|
|
pub mod nuts;
|
|
pub mod types;
|
|
#[cfg(target_arch = "wasm32")]
|
|
pub mod wallet;
|
|
|
|
#[wasm_bindgen(start)]
|
|
pub fn start() {
|
|
console_error_panic_hook::set_once();
|
|
}
|