use crate::membrane::mechtron_consume_string;
use crate::{mechtron_timestamp, mechtron_uuid};
use cosmic_space::loc;
use cosmic_space::wasm::Timestamp;
#[no_mangle]
extern "C" fn cosmic_uuid() -> loc::Uuid {
loc::Uuid::from_unwrap(mechtron_consume_string(unsafe { mechtron_uuid() }).unwrap())
}
#[no_mangle]
extern "C" fn cosmic_timestamp() -> Timestamp {
Timestamp::new(unsafe { mechtron_timestamp() })
}