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

Unified Diff: logdog/client/coordinator/client.go

Issue 2626433004: Move "common/config" common types into cfgtypes. (Closed)
Patch Set: Created 3 years, 11 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 | « logdog/client/cmd/logdog_butler/main.go ('k') | logdog/client/coordinator/list.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: logdog/client/coordinator/client.go
diff --git a/logdog/client/coordinator/client.go b/logdog/client/coordinator/client.go
index e6f55283400d76f80b0cf49ad1f5db4918302edf..8f06f7ee780a9f8df6ab96fdec31451022a55057 100644
--- a/logdog/client/coordinator/client.go
+++ b/logdog/client/coordinator/client.go
@@ -6,10 +6,10 @@ package coordinator
import (
"github.com/luci/luci-go/common/auth"
- "github.com/luci/luci-go/common/config"
"github.com/luci/luci-go/grpc/prpc"
"github.com/luci/luci-go/logdog/api/endpoints/coordinator/logs/v1"
"github.com/luci/luci-go/logdog/common/types"
+ "github.com/luci/luci-go/luci_config/common/cfgtypes"
)
var (
@@ -36,7 +36,7 @@ func NewClient(c *prpc.Client) *Client {
}
// Stream returns a Stream instance for the named stream.
-func (c *Client) Stream(project config.ProjectName, path types.StreamPath) *Stream {
+func (c *Client) Stream(project cfgtypes.ProjectName, path types.StreamPath) *Stream {
return &Stream{
c: c,
project: project,
« no previous file with comments | « logdog/client/cmd/logdog_butler/main.go ('k') | logdog/client/coordinator/list.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698