mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 05:57:32 +00:00
10 lines
114 B
Go
10 lines
114 B
Go
![]() |
package database
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
type Connector interface {
|
||
|
Connect(ctx context.Context) (Pool, error)
|
||
|
}
|