1
0
mirror of https://github.com/rancher/cli.git synced 2026-02-05 09:48:36 +01:00

Remove rancher/types dependency and update imports

This commit is contained in:
Steven Crespo
2021-06-22 13:51:16 -07:00
parent 244c898fad
commit 87af700d0e
19 changed files with 160 additions and 351 deletions

View File

@@ -9,9 +9,9 @@ import (
"github.com/rancher/cli/config"
"github.com/rancher/norman/clientbase"
ntypes "github.com/rancher/norman/types"
clusterClient "github.com/rancher/types/client/cluster/v3"
managementClient "github.com/rancher/types/client/management/v3"
projectClient "github.com/rancher/types/client/project/v3"
clusterClient "github.com/rancher/rancher/pkg/client/generated/cluster/v3"
managementClient "github.com/rancher/rancher/pkg/client/generated/management/v3"
projectClient "github.com/rancher/rancher/pkg/client/generated/project/v3"
"github.com/sirupsen/logrus"
"golang.org/x/sync/errgroup"
)