mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
15 lines
216 B
Go
15 lines
216 B
Go
|
package postgres
|
||
|
|
||
|
import (
|
||
|
|
||
|
//sql import
|
||
|
_ "github.com/jackc/pgx/v4/stdlib"
|
||
|
|
||
|
"github.com/zitadel/zitadel/internal/database/dialect"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
config := &Config{}
|
||
|
dialect.Register(config, config, false)
|
||
|
}
|