From ea7320746f5127b5e5ea360280003682ff41c2e1 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Sat, 29 Mar 2025 09:37:37 +0200 Subject: [PATCH] added missing cast import --- tools/auth/oidc.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/auth/oidc.go b/tools/auth/oidc.go index 97081e07..fc920e3f 100644 --- a/tools/auth/oidc.go +++ b/tools/auth/oidc.go @@ -5,6 +5,7 @@ import ( "encoding/json" "github.com/pocketbase/pocketbase/tools/types" + "github.com/spf13/cast" "golang.org/x/oauth2" )