14 lines
438 B
Rust
14 lines
438 B
Rust
//! Core domain types and invariants. No I/O dependencies.
|
|
|
|
mod audit;
|
|
mod authority;
|
|
mod id;
|
|
mod label;
|
|
mod vocabulary;
|
|
|
|
pub use audit::{AuditAction, AuditActor, AuditEntry, FieldChange, NewAuditEvent};
|
|
pub use authority::{Authority, AuthorityKind, AuthorityRef, NewAuthority};
|
|
pub use id::{AuthorityId, OrgId, TermId, VocabularyId};
|
|
pub use label::{LocalizedLabel, pick_label};
|
|
pub use vocabulary::{NewTerm, Term, TermRef, Vocabulary};
|