portaki-cli 8.5.0

Portaki module CLI (portaki) — init, build, lint, test, and OCI publish
//! Empty Portaki module template.

use portaki_sdk::prelude::*;

mod ids;

portaki_sdk::portaki_module!(
    id = "{{MODULE_NAME}}",
    display_name_key = "module.displayName",
    description_key = "module.description",
    author = "{{AUTHOR_NAME}}",
    author_url = "https://github.com/TODO",
    module_type = ModuleType::Community,
    icon = IconName::Grid,
    maturity = Maturity::Beta,
);

// Add `guest/` and `host/` surface modules when the module gains UI.
// Boundary ids live in `ids.rs` (SDK 2.1.0+ typed catalogs).