v0.3.8-pre.002

This commit is contained in:
2026-09-03 10:44:49 +02:00
parent 3df8fc74c1
commit 6a1892792c
50 changed files with 3409 additions and 23 deletions

View File

@@ -0,0 +1,8 @@
// file: crates/ksp-app-store-desk/tests/public_api.rs
// version: 1
#[test]
fn pre_002_public_surface_exposes_only_application_run_entry_point() {
let run: fn(&[std::ffi::OsString]) -> ksp_core_lib::Result<()> = ksp_app_store_desk_lib::run;
let _ = run;
}