Fix P1 Rust: all clippy warnings resolved, all tests passing
Some checks failed
CI — P1 Route (Rust) / test (push) Has been cancelled

- Fixed struct field references (_org_id, _config) in constructors
- Added chrono::Weekday import in test module
- cargo clippy --workspace -- -D warnings: CLEAN
- cargo test --workspace: 5/5 passing
This commit is contained in:
2026-03-01 17:28:41 +00:00
parent 4b6292e0c3
commit 0a3173c6a9
3 changed files with 5008 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ async fn main() -> anyhow::Result<()> {
)),
pg_pool,
ts_pool,
config: config.clone(),
_config: config.clone(),
});
let app = create_api_router(state);