mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 15:27:33 +00:00
27 lines
414 B
Go
27 lines
414 B
Go
package pg
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/cache"
|
|
"github.com/zitadel/zitadel/internal/database"
|
|
)
|
|
|
|
type Config struct {
|
|
Enabled bool
|
|
AutoPrune cache.AutoPruneConfig
|
|
}
|
|
|
|
type Connector struct {
|
|
PGXPool
|
|
Config Config
|
|
}
|
|
|
|
func NewConnector(config Config, client *database.DB) *Connector {
|
|
if !config.Enabled {
|
|
return nil
|
|
}
|
|
return &Connector{
|
|
PGXPool: client.Pool,
|
|
Config: config,
|
|
}
|
|
}
|