Module cmdlet

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§

impl_async_cmdlet
Implement an asynchronous cmdlet module
impl_blocking_cmdlet
Implement a blocking cmdlet module
impl_wasi_cmdlet
Implement a WASI cmdlet module