Files
test_deploy/internal/auth/keycloak/client.go
Alex Shevchuk d84487d238 1
2025-08-18 17:12:04 +03:00

16 lines
225 B
Go

package keycloak
import (
"github.com/Nerzal/gocloak/v13"
)
type Client struct {
client *gocloak.GoCloak
jwtManager TokenManager
env string
realm string
clientId string
clientSecret string
}