mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 03:17:33 +00:00
11 lines
158 B
Go
11 lines
158 B
Go
package database
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// Connector abstracts the database driver.
|
|
type Connector interface {
|
|
Connect(ctx context.Context) (Pool, error)
|
|
}
|