This package contains an SDK that facilitates building Spin components in (Tiny)Go. It allows building HTTP components that target the Spin executor.
import (
"fmt"
spinhttp "github.com/fermyon/spin-go-sdk/http"
)
func init() {
// call the Handle function
spinhttp.Handle(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Hello, Fermyon!")
})
}
func main() {}