Primate Go integration.
-
github.com/primate-run/go/coreShared types (Request,Body,Kind) + JS/WASM bridge methods. -
github.com/primate-run/go/routeRoute verbs:route.Post,route.Get
package main
import "github.com/primate-run/go/route"
var _ = route.Post(func(request route.Request) any {
s, _ := request.Body.Text()
return s
})