mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-16 14:08:33 +00:00
18 lines
286 B
Go
18 lines
286 B
Go
![]() |
package config
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
|
||
|
"github.com/caos/zitadel/internal/errors"
|
||
|
)
|
||
|
|
||
|
var client *sql.DB
|
||
|
|
||
|
type Config struct{}
|
||
|
|
||
|
func Connect() (*sql.DB, error) {
|
||
|
//TODO: viper read into Config
|
||
|
|
||
|
return nil, errors.ThrowUnimplemented(nil, "CONFI-8bvVL", "connect is unimplemented")
|
||
|
}
|