Skip to main content

mogh_auth_client/
lib.rs

1use typeshare::typeshare;
2
3pub mod api;
4pub mod config;
5pub mod event;
6pub mod passkey;
7pub mod request;
8
9#[allow(unused)]
10#[cfg(feature = "utoipa")]
11pub mod openapi;
12
13#[typeshare(serialized_as = "any")]
14pub type JsonValue = serde_json::Value;
15#[typeshare(serialized_as = "number")]
16pub type U64 = u64;