mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
11 lines
164 B
Go
11 lines
164 B
Go
|
package cockroach
|
||
|
|
||
|
import (
|
||
|
"github.com/zitadel/zitadel/internal/database/dialect"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
config := &Config{}
|
||
|
dialect.Register(config, config, true)
|
||
|
}
|