Files
khadhroony-solana-project/crates/ksp-app-store-desk/tests/public_api.rs
2026-09-03 10:44:49 +02:00

9 lines
266 B
Rust

// 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;
}