mirror of
https://github.com/imjasonh/terraform-playground
synced 2026-07-08 07:44:57 +00:00
15 lines
219 B
Go
15 lines
219 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/syumai/workers"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/hello", func(w http.ResponseWriter, req *http.Request) {
|
|
fmt.Fprintln(w, "Hello!")
|
|
})
|
|
workers.Serve(nil)
|
|
}
|