mirror of
https://github.com/syumai/workers.git
synced 2025-03-11 09:49:12 +00:00
14 lines
244 B
Go
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
|
||
|
}
|