restructure

This commit is contained in:
2026-06-29 23:38:53 +02:00
parent 7faf14fb2f
commit bb17beb80d
68 changed files with 1202 additions and 1088 deletions

View File

@@ -0,0 +1,13 @@
mod ids;
mod movie;
mod review;
mod user;
pub use ids::*;
pub use movie::*;
pub use review::*;
pub use user::*;
#[cfg(test)]
#[path = "../tests/value_objects.rs"]
mod tests;