15 lines
258 B
Rust
15 lines
258 B
Rust
#![no_std]
|
|
#![no_main]
|
|
|
|
use mammoth::{define_entry, zion::z_err_t};
|
|
|
|
define_entry!();
|
|
|
|
#[no_mangle]
|
|
extern "C" fn main() -> z_err_t {
|
|
let yellowstone = yellowstone_yunq::from_init_endpoint();
|
|
|
|
let denali = yellowstone.get_denali().unwrap();
|
|
|
|
0
|
|
}
|