2024-01-03 23:23:29 +09:00

14 lines
244 B
Go

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