This commit is contained in:
2026-04-20 15:32:19 +02:00
commit 0858b72e31
36 changed files with 6359 additions and 0 deletions

9
kb_app/src/splash.rs Normal file
View File

@@ -0,0 +1,9 @@
// file: kb_app/src/splash.rs
#[derive(serde::Serialize, serde::Deserialize, Clone, Debug, ts_rs::TS)]
#[ts(export, export_to = "../frontend/ts/bindings/SplashOrder.ts")]
pub struct SplashOrder {
pub order: String,
pub msg: Option<String>,
pub status: Option<String>,
}