Use module slices from the standard library. Remove use of golang.org/x/exp/slices

This commit is contained in:
Holger Obermaier
2026-02-09 11:30:32 +01:00
parent 77a9b5a977
commit 3633db0d46
3 changed files with 3 additions and 4 deletions

View File

@@ -11,10 +11,9 @@ import (
"errors"
"fmt"
"regexp"
"slices"
"strings"
"golang.org/x/exp/slices"
topo "github.com/ClusterCockpit/cc-metric-collector/pkg/ccTopology"
)