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.
10 lines
135 B
Rust
10 lines
135 B
Rust
use uuid::Uuid;
|
|
|
|
pub struct GetWatchQueueQuery {
|
|
pub user_id: Uuid,
|
|
}
|
|
|
|
pub struct GetWebhookTokensQuery {
|
|
pub user_id: Uuid,
|
|
}
|