Moved Records into the document module.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s

This commit is contained in:
2026-02-13 12:00:39 -05:00
parent a9b87200ef
commit 404c6e9c34
13 changed files with 2526 additions and 28 deletions

View File

@@ -1,5 +1,13 @@
pub mod clock;
pub mod create;
pub mod definition;
pub mod field;
pub mod session;
mod clock;
mod create;
mod definition;
mod field;
mod record;
mod session;
pub use clock::Clock;
pub use create::CreateDoc;
pub use definition::DocDef;
pub use field::{Field, FieldType};
pub use record::Records;
pub use session::Session;