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

Unified Diff: logdog/client/cli/path.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/cli/main.go ('k') | logdog/client/cli/subcommandCat.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: logdog/client/cli/path.go
diff --git a/logdog/client/cli/path.go b/logdog/client/cli/path.go
index 32135f9f5ede34f08c83135c5eadcaa938b97416..c43f10a38e3aee6749e7f34ded100e95ebb0cd25 100644
--- a/logdog/client/cli/path.go
+++ b/logdog/client/cli/path.go
@@ -5,11 +5,11 @@
package cli
import (
- "github.com/luci/luci-go/common/config"
"github.com/luci/luci-go/logdog/common/types"
+ "github.com/luci/luci-go/luci_config/common/cfgtypes"
)
-func makeUnifiedPath(project config.ProjectName, path types.StreamPath) string {
+func makeUnifiedPath(project cfgtypes.ProjectName, path types.StreamPath) string {
val := string(project)
if path != "" {
val += types.StreamNameSepStr + string(path)
« no previous file with comments | « logdog/client/cli/main.go ('k') | logdog/client/cli/subcommandCat.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698