| 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,
|
|
|