From 02b084f948e2d9bc774c19a4b62e31f9a6fe5998 Mon Sep 17 00:00:00 2001 From: Luiz Pegoraro Date: Tue, 26 Sep 2023 17:13:50 -0300 Subject: [PATCH] feat(maestro): adding the subtle pg import. --- maestro/deployment/repository.go | 1 + maestro/postgres/init.go | 1 + 2 files changed, 2 insertions(+) diff --git a/maestro/deployment/repository.go b/maestro/deployment/repository.go index 5c90b8147..39baa0d76 100644 --- a/maestro/deployment/repository.go +++ b/maestro/deployment/repository.go @@ -4,6 +4,7 @@ import ( "context" "fmt" "github.com/jmoiron/sqlx" + _ "github.com/lib/pq" // required for SQL access "github.com/orb-community/orb/pkg/errors" "go.uber.org/zap" "time" diff --git a/maestro/postgres/init.go b/maestro/postgres/init.go index 7d5ec6578..81363708c 100644 --- a/maestro/postgres/init.go +++ b/maestro/postgres/init.go @@ -3,6 +3,7 @@ package postgres import ( "fmt" "github.com/jmoiron/sqlx" + _ "github.com/lib/pq" // required for SQL access "github.com/orb-community/orb/pkg/config" migrate "github.com/rubenv/sql-migrate" )