Replace kubeshark/worker with kubeshark/base

This commit is contained in:
M. Mert Yildiran
2022-11-30 03:58:23 +03:00
parent 6ca0fe137e
commit 5d4fab04c3
11 changed files with 39 additions and 73 deletions

View File

@@ -6,10 +6,10 @@ import (
"regexp"
"time"
"github.com/kubeshark/base/pkg/api"
"github.com/kubeshark/base/pkg/models"
"github.com/kubeshark/kubeshark/debounce"
"github.com/kubeshark/kubeshark/utils"
"github.com/kubeshark/worker/api"
"github.com/kubeshark/worker/models"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
core "k8s.io/api/core/v1"

View File

@@ -12,10 +12,10 @@ import (
"regexp"
"strconv"
"github.com/kubeshark/base/pkg/api"
"github.com/kubeshark/base/pkg/models"
"github.com/kubeshark/kubeshark/semver"
"github.com/kubeshark/kubeshark/utils"
"github.com/kubeshark/worker/api"
"github.com/kubeshark/worker/models"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
auth "k8s.io/api/authorization/v1"

View File

@@ -3,7 +3,7 @@ package kubernetes
import (
"regexp"
"github.com/kubeshark/worker/models"
"github.com/kubeshark/base/pkg/models"
core "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)