mirror of
https://github.com/aljazceru/pubky-core.git
synced 2025-12-31 21:04:34 +01:00
11 lines
165 B
Rust
11 lines
165 B
Rust
use wasm_bindgen::prelude::*;
|
|
|
|
pub mod auth;
|
|
pub mod keys;
|
|
pub mod pkarr;
|
|
|
|
#[wasm_bindgen]
|
|
pub struct PubkyClient {
|
|
pub(crate) pkarr: pkarr::PkarrRelayClient,
|
|
}
|