14 lines
244 B
Go
Raw Normal View History

2024-01-03 23:21:29 +09:00
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
}