//go:build wasip1 // Package main compiles the cyberpunk theme to a wasip1 reactor-mode wasm guest // (WO-WZ-015). The .so build path is retired; `ninja plugin build` produces the // .bnp artifact the registry serves. // // Reactor mode: the host runs `_initialize` once per pooled instance, which // runs this init func (hence wasmguest.Serve) before any bn_invoke. Serve is // non-blocking; all theme work then arrives over the ABI hook calls. main is // never called. package main import "git.dev.alexdunmow.com/block/core/plugin/wasmguest" func init() { wasmguest.Serve(Registration) } func main() {} // never called — reactor mode