2023-04-30 12:42:20 +09:00

14 lines
240 B
Go

package main
import (
"net/http"
"github.com/syumai/workers"
"github.com/syumai/workers/examples/d1-blog-server/app"
)
func main() {
http.Handle("/articles", app.NewArticleHandler())
workers.Serve(nil) // use http.DefaultServeMux
}