Files
continuwuity/src/core/matrix/mod.rs
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
311 B
Rust
Raw Normal View History

//! Core Matrix Library
pub mod event;
pub mod pdu;
2025-04-26 08:24:47 +00:00
pub mod state_key;
pub mod state_res;
pub mod versions;
2025-04-26 08:24:47 +00:00
pub use event::{Event, TypeExt as EventTypeExt};
2026-04-10 11:47:01 -04:00
pub use pdu::{PartialPdu, Pdu, PduCount, PduEvent, PduId, RawPduId, ShortId};
2025-04-26 08:24:47 +00:00
pub use state_key::StateKey;
pub use state_res::{StateMap, TypeStateKey};