squadron/_examples/monorepo/squadrons/checkout/backend/main.go
2023-09-21 10:24:30 +02:00

14 lines
204 B
Go

package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
_, _ = fmt.Fprintf(w, "hello")
})
_ = http.ListenAndServe(":80", nil)
}