This package contains an SDK that facilitates building Spin components in
(Tiny)Go. It currently allows building HTTP components that target the Wagi
executor.
func main() {
// call the HandleRequest function
spin_http.HandleRequest(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Hello, Fermyon!")
})
}