| Index: appengine/cmd/helloworld/frontend/handler.go
|
| diff --git a/appengine/cmd/helloworld/frontend/handler.go b/appengine/cmd/helloworld/frontend/handler.go
|
| index 3cdd65b4b0c20f1967909ae15a29c234f444803a..9c25e6563305f80d44b5b9b9f62437cf0e03efaf 100644
|
| --- a/appengine/cmd/helloworld/frontend/handler.go
|
| +++ b/appengine/cmd/helloworld/frontend/handler.go
|
| @@ -19,6 +19,7 @@ import (
|
| "github.com/luci/luci-go/appengine/gaeauth/server"
|
| "github.com/luci/luci-go/appengine/gaemiddleware"
|
| "github.com/luci/luci-go/server/auth"
|
| + "github.com/luci/luci-go/server/discovery"
|
| "github.com/luci/luci-go/server/middleware"
|
| "github.com/luci/luci-go/server/prpc"
|
| "github.com/luci/luci-go/server/templates"
|
| @@ -77,6 +78,7 @@ func init() {
|
|
|
| var api prpc.Server
|
| helloworld.RegisterGreeterServer(&api, &greeterService{})
|
| + discovery.Enable(&api)
|
| api.InstallHandlers(router, base)
|
|
|
| http.DefaultServeMux.Handle("/", router)
|
|
|