using Statum; namespace {{NS}} { /** * Sample action scaffolded by `spry add action`. Author a reference with * `action_registry.author<{{CLASS}}Action>()` in an entrypoint and bind it * with `stm-action`. */ public class {{CLASS}}Action : StatumAction { public override async DirectiveBuilder handle() throws GLib.Error { return directives().notify("info", "{{CLASS}} handled"); } } }