data_model/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Re-export modules
mod error;
mod maze;
mod maze_cell_state;
mod maze_definition;
mod maze_point;
mod user;

// Re-export traits and structs
pub use error::{Error, UserValidationError};
pub use maze_definition::MazeDefinition;
pub use maze::Maze;
pub use maze_cell_state::MazeCellState;
pub use maze_point::MazePoint;
pub use user::User;