-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmod.rs
More file actions
27 lines (26 loc) · 747 Bytes
/
mod.rs
File metadata and controls
27 lines (26 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//! Core data models for the Chaos application.
//!
//! This module contains all the data structures and types that represent the core entities
//! in the Chaos system. Each submodule represents a distinct domain model with its associated
//! functionality.
//!
//! The models are designed to be used with the application's database layer and API endpoints,
//! providing a consistent interface for data manipulation and validation.
pub mod answer;
pub mod app;
pub mod application;
pub mod auth;
pub mod campaign;
pub mod serde_string;
pub mod email;
pub mod email_template;
pub mod error;
pub mod invite;
pub mod offer;
pub mod organisation;
pub mod question;
pub mod rating;
pub mod role;
pub mod storage;
pub mod transaction;
pub mod user;