Files
zitadel/backend/v3/storage/database/config.go

11 lines
158 B
Go
Raw Permalink Normal View History

2025-04-29 06:03:47 +02:00
package database
import (
"context"
)
2025-05-08 19:01:55 +02:00
// Connector abstracts the database driver.
2025-04-29 06:03:47 +02:00
type Connector interface {
Connect(ctx context.Context) (Pool, error)
}