Replace literal SQL with Diesel abstractions

This commit is contained in:
2026-07-18 17:00:32 +02:00
parent a727c9073d
commit ca5eb4e1ac
69 changed files with 3508 additions and 4285 deletions

View File

@@ -3,9 +3,9 @@ use std::error::Error;
use std::fs;
use std::path::Path;
use crate::db::DbConnection as Connection;
use chrono::{Datelike, TimeZone, Utc};
use rayon::prelude::*;
use rusqlite::Connection;
use serde_json::{Value, json};
use crate::db::queries;