14 lines
238 B
Go
Raw Normal View History

2022-05-18 00:04:37 +09:00
package main
import (
"net/http"
"github.com/syumai/workers"
"github.com/syumai/workers/examples/simple-json-server/app"
)
func main() {
http.HandleFunc("/hello", app.HelloHandler)
workers.Serve(nil) // use http.DefaultServeMux
}