From 7ccc36955acdc4002a20fd0bb7ccf6e2841f57f9 Mon Sep 17 00:00:00 2001 From: Austin Schaefer Date: Thu, 3 Sep 2026 23:24:35 +0200 Subject: [PATCH] Sweep dto.rs and RelevanceInputs into the models.rs convention - crates/web/src/api/dto.rs -> api/models.rs (ArticleView/FeedView were already models-shaped content, just not named models.rs) - crates/core/src/scoring.rs's RelevanceInputs moves into crates/core/src/models.rs alongside the other core domain types, since it's built by score_article's callers, not score_article itself Also picks up an unrelated fmt fix in db/src/articles.rs (import ordering) that landed on disk from elsewhere. --- crates/web/src/api/{dto.rs => models.rs} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename crates/web/src/api/{dto.rs => models.rs} (100%) diff --git a/crates/web/src/api/dto.rs b/crates/web/src/api/models.rs similarity index 100% rename from crates/web/src/api/dto.rs rename to crates/web/src/api/models.rs