Module ark_module::cmdlet

source ·
Expand description

⌨️ Cmdlet module

These are safe Rust high-level utilities to implement cmdlet modules.

A cmdlet module is a small CLI program built as an Ark Wasm module.

We support two different ways of implement these modules:

  • blocking - use impl_blocking_cmdlet
  • asynchronous - use impl_async_cmdlet

Macros