Flat use_cases/ (44 files) + monolithic commands.rs/queries.rs split into diary/, movies/, watchlist/, import/, auth/, users/, integrations/, search/, person/, federation/ — each with own commands.rs, queries.rs, and use case modules. Inline tests extracted to sibling tests/ dirs.
8 lines
184 B
Rust
8 lines
184 B
Rust
pub struct GetMoviesQuery {
|
|
pub limit: Option<u32>,
|
|
pub offset: Option<u32>,
|
|
pub search: Option<String>,
|
|
pub genre: Option<String>,
|
|
pub language: Option<String>,
|
|
}
|