diff --git a/go.mod b/go.mod index 68e58acb..3b85dca9 100644 --- a/go.mod +++ b/go.mod @@ -212,7 +212,7 @@ require ( github.com/valyala/tcplisten v1.0.0 // indirect github.com/volatiletech/inflect v0.0.1 // indirect github.com/volatiletech/randomize v0.0.1 // indirect - golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 + golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 // indirect golang.org/x/net v0.28.0 // indirect golang.org/x/sys v0.23.0 // indirect golang.org/x/text v0.17.0 // indirect diff --git a/internal/controllers/geofences_controller.go b/internal/controllers/geofences_controller.go index e15ec6d9..984d7979 100644 --- a/internal/controllers/geofences_controller.go +++ b/internal/controllers/geofences_controller.go @@ -5,6 +5,7 @@ import ( "database/sql" "encoding/json" "fmt" + "slices" "time" ddgrpc "github.com/DIMO-Network/device-definitions-api/pkg/grpc" @@ -26,7 +27,6 @@ import ( "github.com/volatiletech/sqlboiler/v4/boil" "github.com/volatiletech/sqlboiler/v4/queries/qm" "github.com/volatiletech/sqlboiler/v4/types" - "golang.org/x/exp/slices" ) // TODO(elffjs): Setting? diff --git a/internal/controllers/nft_controller.go b/internal/controllers/nft_controller.go index bc4d8ea4..bf369615 100644 --- a/internal/controllers/nft_controller.go +++ b/internal/controllers/nft_controller.go @@ -6,6 +6,7 @@ import ( "fmt" "io" "math/big" + "slices" "strconv" "strings" @@ -35,7 +36,6 @@ import ( "github.com/volatiletech/sqlboiler/v4/boil" "github.com/volatiletech/sqlboiler/v4/queries/qm" "github.com/volatiletech/sqlboiler/v4/types" - "golang.org/x/exp/slices" ) type NFTController struct { diff --git a/internal/controllers/user_integrations_controller.go b/internal/controllers/user_integrations_controller.go index 1b53bac1..1b4336be 100644 --- a/internal/controllers/user_integrations_controller.go +++ b/internal/controllers/user_integrations_controller.go @@ -6,6 +6,7 @@ import ( "encoding/json" "fmt" "math/big" + "slices" "strconv" "strings" "time" @@ -31,7 +32,6 @@ import ( "github.com/volatiletech/null/v8" "github.com/volatiletech/sqlboiler/v4/boil" "github.com/volatiletech/sqlboiler/v4/queries/qm" - "golang.org/x/exp/slices" "golang.org/x/mod/semver" ) diff --git a/internal/services/tesla_fleet_api_service.go b/internal/services/tesla_fleet_api_service.go index 2b6745b2..9969849f 100644 --- a/internal/services/tesla_fleet_api_service.go +++ b/internal/services/tesla_fleet_api_service.go @@ -8,6 +8,7 @@ import ( "io" "net/http" "net/url" + "slices" "strconv" "strings" "time" @@ -17,7 +18,6 @@ import ( "github.com/goccy/go-json" "github.com/golang-jwt/jwt/v5" "github.com/rs/zerolog" - "golang.org/x/exp/slices" "golang.org/x/oauth2" )