fixup! Update go.mod and go.sum (#48)

This commit is contained in:
2026-02-20 15:39:27 +00:00
parent 0aaf2dc78c
commit 8e5eaab0af
43 changed files with 5271 additions and 129 deletions
+2 -2
View File
@@ -28,8 +28,8 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/charmbracelet/lipgloss/table"
"github.com/nvm/kportal/internal/config"
"github.com/nvm/kportal/internal/k8s"
"github.com/lukaszraczylo/kportal/internal/config"
"github.com/lukaszraczylo/kportal/internal/k8s"
)
// safeRecover recovers from panics and logs them
+1 -1
View File
@@ -3,7 +3,7 @@ package ui
import (
"testing"
"github.com/nvm/kportal/internal/config"
"github.com/lukaszraczylo/kportal/internal/config"
"github.com/stretchr/testify/assert"
)
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"testing"
"time"
"github.com/nvm/kportal/internal/k8s"
"github.com/lukaszraczylo/kportal/internal/k8s"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"sync"
"testing"
"github.com/nvm/kportal/internal/config"
"github.com/lukaszraczylo/kportal/internal/config"
"github.com/stretchr/testify/assert"
)
+2 -2
View File
@@ -6,8 +6,8 @@ import (
"time"
tea "github.com/charmbracelet/bubbletea"
"github.com/nvm/kportal/internal/config"
"github.com/nvm/kportal/internal/k8s"
"github.com/lukaszraczylo/kportal/internal/config"
"github.com/lukaszraczylo/kportal/internal/k8s"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
+2 -2
View File
@@ -3,8 +3,8 @@ package ui
import (
"context"
"github.com/nvm/kportal/internal/config"
"github.com/nvm/kportal/internal/k8s"
"github.com/lukaszraczylo/kportal/internal/config"
"github.com/lukaszraczylo/kportal/internal/k8s"
)
// DiscoveryInterface defines the interface for Kubernetes discovery operations
+2 -2
View File
@@ -4,8 +4,8 @@ import (
"context"
"sync"
"github.com/nvm/kportal/internal/config"
"github.com/nvm/kportal/internal/k8s"
"github.com/lukaszraczylo/kportal/internal/config"
"github.com/lukaszraczylo/kportal/internal/k8s"
)
// MockDiscovery is a mock implementation of DiscoveryInterface for testing
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"strings"
"sync"
"github.com/nvm/kportal/internal/config"
"github.com/lukaszraczylo/kportal/internal/config"
)
// ForwardStatus represents the current status of a port forward
+4 -4
View File
@@ -6,10 +6,10 @@ import (
"time"
tea "github.com/charmbracelet/bubbletea"
"github.com/nvm/kportal/internal/benchmark"
"github.com/nvm/kportal/internal/config"
"github.com/nvm/kportal/internal/k8s"
"github.com/nvm/kportal/internal/logger"
"github.com/lukaszraczylo/kportal/internal/benchmark"
"github.com/lukaszraczylo/kportal/internal/config"
"github.com/lukaszraczylo/kportal/internal/k8s"
"github.com/lukaszraczylo/kportal/internal/logger"
)
const (
+1 -1
View File
@@ -3,7 +3,7 @@ package ui
import (
"testing"
"github.com/nvm/kportal/internal/config"
"github.com/lukaszraczylo/kportal/internal/config"
"github.com/stretchr/testify/assert"
)
+2 -2
View File
@@ -10,8 +10,8 @@ import (
"time"
tea "github.com/charmbracelet/bubbletea"
"github.com/nvm/kportal/internal/config"
"github.com/nvm/kportal/internal/k8s"
"github.com/lukaszraczylo/kportal/internal/config"
"github.com/lukaszraczylo/kportal/internal/k8s"
)
// isFilterableStep returns true if the step supports search/filter
+1 -1
View File
@@ -3,7 +3,7 @@ package ui
import (
"strings"
"github.com/nvm/kportal/internal/k8s"
"github.com/lukaszraczylo/kportal/internal/k8s"
)
// filterStrings filters a slice of strings by a search filter (case-insensitive substring match)
+1 -1
View File
@@ -3,7 +3,7 @@ package ui
import (
"testing"
"github.com/nvm/kportal/internal/k8s"
"github.com/lukaszraczylo/kportal/internal/k8s"
"github.com/stretchr/testify/assert"
)