refactor: move DB to shared crate, convert push endpoints to server functions, remove dead REST handlers
All checks were successful
Build MIPS Binary / build (push) Successful in 5m17s

This commit is contained in:
spinline
2026-02-10 02:05:04 +03:00
parent c2bf6e6fd5
commit 4b3e713657
14 changed files with 61 additions and 96 deletions

3
Cargo.lock generated
View File

@@ -330,7 +330,6 @@ dependencies = [
"serde",
"serde_json",
"shared",
"sqlx",
"thiserror 2.0.18",
"time",
"tokio",
@@ -3651,12 +3650,14 @@ dependencies = [
name = "shared"
version = "0.1.0"
dependencies = [
"anyhow",
"bytes",
"leptos",
"leptos_axum",
"leptos_router",
"quick-xml",
"serde",
"sqlx",
"thiserror 2.0.18",
"tokio",
"utoipa",