Initial Commit

This commit is contained in:
2026-04-09 23:23:31 +02:00
commit a8f0d9c3ee
94 changed files with 15173 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
use sqlx::SqlitePool;
use crate::catalog::refresh_catalog;
pub async fn run_catalog_refresh(pool: SqlitePool) {
if let Err(e) = refresh_catalog(&pool).await {
tracing::error!("Catalog refresh failed: {}", e);
}
}