| Index: milo/appengine/frontend/milo.go
|
| diff --git a/milo/appengine/frontend/milo.go b/milo/appengine/frontend/milo.go
|
| index 408cc7fa3b5fbc39353ad3c82308711e30c0b92a..178976c78d363408b9f28dfd3a90d23a1a895f05 100644
|
| --- a/milo/appengine/frontend/milo.go
|
| +++ b/milo/appengine/frontend/milo.go
|
| @@ -7,9 +7,9 @@ package frontend
|
| import (
|
| "net/http"
|
|
|
| + "github.com/golang/protobuf/proto"
|
| "golang.org/x/net/context"
|
|
|
| - "github.com/golang/protobuf/proto"
|
| "github.com/luci/luci-go/appengine/gaemiddleware"
|
| "github.com/luci/luci-go/grpc/discovery"
|
| "github.com/luci/luci-go/grpc/grpcmon"
|
| @@ -17,6 +17,7 @@ import (
|
| milo "github.com/luci/luci-go/milo/api/proto"
|
| "github.com/luci/luci-go/milo/appengine/buildbot"
|
| "github.com/luci/luci-go/milo/appengine/buildbucket"
|
| + "github.com/luci/luci-go/milo/appengine/buildinfo"
|
| "github.com/luci/luci-go/milo/appengine/console"
|
| "github.com/luci/luci-go/milo/appengine/logdog"
|
| "github.com/luci/luci-go/milo/appengine/settings"
|
| @@ -78,6 +79,10 @@ func init() {
|
| Service: &buildbot.Service{},
|
| Prelude: emptyPrelude,
|
| })
|
| + milo.RegisterBuildInfoServer(&api, &milo.DecoratedBuildInfo{
|
| + Service: &buildinfo.Service{},
|
| + Prelude: emptyPrelude,
|
| + })
|
| discovery.Enable(&api)
|
| api.InstallHandlers(r, gaemiddleware.BaseProd())
|
|
|
|
|