refactor(openid/config): remove unused field

This commit is contained in:
Trong Huu Nguyen
2022-07-20 15:25:28 +02:00
parent b4e6e97448
commit 242dc12be9

View File

@@ -10,7 +10,6 @@ type Config interface {
}
type config struct {
cfg *wonderwallconfig.Config
clientConfig Client
providerConfig Provider
}
@@ -35,7 +34,6 @@ func NewConfig(cfg *wonderwallconfig.Config) (Config, error) {
}
return &config{
cfg: cfg,
clientConfig: clientCfg,
providerConfig: providerCfg,
}, nil