shopify_function_wasm_api 0.3.1

High-level interface for interfacing with the Shopify Function Wasm API
Documentation
1
2
3
4
5
6
7
use shopify_function_wasm_api::init_panic_handler;

#[cfg_attr(target_family = "wasm", export_name = "_start")]
fn main() {
    init_panic_handler();
    panic!("at the disco");
}