Fixed CI #2
14
README.md
14
README.md
@ -33,24 +33,22 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"log"
|
||||||
|
|
||||||
"git.dragse.it/anthrove/otter-space-sdk/v2/pkg/database"
|
"git.dragse.it/anthrove/otter-space-sdk/v2/pkg/database"
|
||||||
"git.dragse.it/anthrove/otter-space-sdk/v2/pkg/models"
|
"git.dragse.it/anthrove/otter-space-sdk/v2/pkg/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
var err error
|
|
||||||
dbDebug := false
|
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
|
cfg := models.DatabaseConfig{}
|
||||||
|
|
||||||
pgClient := database.NewPostgresqlConnection(dbDebug)
|
pgClient := database.NewPostgresqlConnection()
|
||||||
err = pgClient.Connect(ctx, "your-endpoint", "your-username", "your-password", "anthrove", 5432, "disable", "Europe/Berlin")
|
err := pgClient.Connect(ctx, cfg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
log.Panic(err)
|
||||||
return
|
|
||||||
}
|
}
|
||||||
// further usage of the client...
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user