Fixed CI #2

Merged
SoXX merged 7 commits from ci/gitea into main 2024-07-19 13:14:00 +00:00
Showing only changes of commit 652b2ea716 - Show all commits

View File

@ -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 ctx := context.Background()
dbDebug := false cfg := models.DatabaseConfig{}
ctx := context.Background()
pgClient := database.NewPostgresqlConnection()
pgClient := database.NewPostgresqlConnection(dbDebug) err := pgClient.Connect(ctx, cfg)
err = pgClient.Connect(ctx, "your-endpoint", "your-username", "your-password", "anthrove", 5432, "disable", "Europe/Berlin")
if err != nil { if err != nil {
fmt.Println(err) log.Panic(err)
return
} }
// further usage of the client...
} }
``` ```