mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-01-08 17:27:44 +03:00
9 lines
299 B
Rust
9 lines
299 B
Rust
mod error;
|
|
mod logger;
|
|
mod machine;
|
|
|
|
pub use error::{CryptoStoreError, DecryptionError, MachineCreationError};
|
|
pub use logger::{set_logger, Logger};
|
|
pub use machine::{DecryptedEvent, Device, DeviceLists, OlmMachine, Request, RequestType, Sas};
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/olm.uniffi.rs"));
|