/// WASM target stub: probe_runtime and probe_all are not available on wasm-gc.
/// Provides stubs so cmd/main can pass wasm-gc check during publish.

#cfg(not(target="native"))

pub fn probe_all() -> WASMEnvReport {
  { moon_version: "native-only", runtimes: [] }
}

pub fn get_env(_name : String) -> Option[String] {
  None
}

pub fn exit_process(_code : Int) -> Unit {
}