Skip to content

fermyon/spin-go-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The (Tiny)Go SDK for Spin

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/sdk/go/http"
)

func init() {
    // call the Handle function
    spinhttp.Handle(func(w http.ResponseWriter, r *http.Request) {
        fmt.Fprintln(w, "Hello, Fermyon!")
    })
}

func main() {}

Releases

No releases published

Packages

No packages published