//go:build wasip1 // Package main compiles the Cal.com Booking plugin to a wasip1 reactor-mode // wasm guest. `ninja plugin build` produces the .bnp artifact the registry // serves; the host runs `_initialize` once per pooled instance, invoking this // init (hence wasmguest.Serve) before any ABI hook call. main is never called. package main import "git.dev.alexdunmow.com/block/pluginsdk/plugin/wasmguest" func init() { wasmguest.Serve(Registration) } func main() {} // never called — reactor mode