Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(505)

Unified Diff: milo/appengine/frontend/main.go

Issue 2944983003: [milo] {buildbucket,buildbot,swarming,logdog} -> backends/*. (Closed)
Patch Set: fix the tests Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « milo/appengine/frontend/frontpage.go ('k') | milo/appengine/frontend/main_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/appengine/frontend/main.go
diff --git a/milo/appengine/frontend/main.go b/milo/appengine/frontend/main.go
index 18c74aa315f98bfafc70f918ae6024cc7836f512..2096a00c8be7d929745f992cfd036ee193fc854f 100644
--- a/milo/appengine/frontend/main.go
+++ b/milo/appengine/frontend/main.go
@@ -15,13 +15,13 @@ import (
"github.com/luci/luci-go/grpc/grpcmon"
"github.com/luci/luci-go/grpc/prpc"
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/common"
"github.com/luci/luci-go/milo/appengine/console"
- "github.com/luci/luci-go/milo/appengine/logdog"
+ "github.com/luci/luci-go/milo/appengine/job_source/buildbot"
+ "github.com/luci/luci-go/milo/appengine/job_source/buildbucket"
+ "github.com/luci/luci-go/milo/appengine/job_source/raw_presentation"
+ "github.com/luci/luci-go/milo/appengine/job_source/swarming"
"github.com/luci/luci-go/milo/appengine/rpc"
- "github.com/luci/luci-go/milo/appengine/swarming"
"github.com/luci/luci-go/server/router"
)
@@ -63,7 +63,7 @@ func init() {
// LogDog Milo Annotation Streams.
// This mimicks the `logdog://logdog_host/project/*path` url scheme seen on
// swarming tasks.
- r.GET("/raw/build/:logdog_host/:project/*path", basemw, logdog.BuildHandler)
+ r.GET("/raw/build/:logdog_host/:project/*path", basemw, raw_presentation.BuildHandler)
// PubSub subscription endpoints.
r.POST("/_ah/push-handlers/buildbot", basemw, buildbot.PubSubHandler)
« no previous file with comments | « milo/appengine/frontend/frontpage.go ('k') | milo/appengine/frontend/main_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698