9 lines
266 B
Rust
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;
|
|
}
|