| Index: logdog/common/viewer/url.go
|
| diff --git a/logdog/common/viewer/url.go b/logdog/common/viewer/url.go
|
| index ba6cddca8bc841a1d7f7537ec3ce255a2903b7a2..f54764af0bf9558a1df91a9f4513124915a5cabe 100644
|
| --- a/logdog/common/viewer/url.go
|
| +++ b/logdog/common/viewer/url.go
|
| @@ -10,12 +10,12 @@ import (
|
| "fmt"
|
| "net/url"
|
|
|
| - "github.com/luci/luci-go/common/config"
|
| "github.com/luci/luci-go/logdog/common/types"
|
| + "github.com/luci/luci-go/luci_config/common/cfgtypes"
|
| )
|
|
|
| // GetURL generates a LogDog app viewer URL for the specified streams.
|
| -func GetURL(host string, project config.ProjectName, paths ...types.StreamPath) string {
|
| +func GetURL(host string, project cfgtypes.ProjectName, paths ...types.StreamPath) string {
|
| values := make([]string, len(paths))
|
| for i, p := range paths {
|
| values[i] = fmt.Sprintf("%s/%s", project, p)
|
|
|