Some checks failed
CI / rustfmt (push) Successful in 17s
CI / wasm build (push) Successful in 1m16s
CI / clippy (push) Successful in 1m28s
CI / test (push) Successful in 1m48s
CI / example (push) Successful in 1m31s
CI / duplicate code (push) Failing after 33s
CI / web client (push) Failing after 34s
CI / cargo-machete (push) Successful in 1m18s
CI / cargo-deny (push) Failing after 3m2s
17 lines
287 B
Rust
17 lines
287 B
Rust
pub mod client;
|
|
pub mod config;
|
|
pub mod crypto;
|
|
pub mod error;
|
|
pub mod frame;
|
|
pub mod logging;
|
|
pub mod subscription;
|
|
pub mod transport;
|
|
|
|
#[cfg(not(test))]
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
#[cfg(not(test))]
|
|
#[wasm_bindgen(start)]
|
|
pub fn main() {
|
|
console_error_panic_hook::set_once();
|
|
}
|