mirror of
https://github.com/syumai/workers.git
synced 2025-03-11 01:39:11 +00:00
14 lines
238 B
Go
14 lines
238 B
Go
![]() |
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
|
||
|
}
|