Stone Hao
Stone Hao
hashkey[0] |= 1 看代码应该按位或
我觉得作者应该再ReadMe中指出golang的版本依赖的问题 io/fs 是1.16提出的东西 。go install 也是1.16才给定下载的功能。 我当前版本是1.15.6 里面没有io/fs源码而报错。 搜索了网上的信息才知道。
r := gin.NewRouter() //r := router.NewRouter() r.SetNotAllowedHandler(http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { fmt.Println("not allowed") })) r.SetNotFoundHandler(http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { fmt.Println("not found") })) ctx := svc.NewServiceContext(c) server := rest.MustNewServer(c.RestConf, rest.WithRouter(r)) //...