Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2023-08-19 17:33:25 +03:00
parent 59e28e5a86
commit 16b38a5578
8 changed files with 15 additions and 170 deletions

View File

@@ -1,3 +1,5 @@
//go:build ignore
package postgres
const (

View File

@@ -1,3 +1,5 @@
//go:build ignore
package postgres
import (
@@ -8,14 +10,14 @@ import (
"fmt"
"strings"
"git.unistack.org/unistack-org/pkgdash/internal/config"
"git.unistack.org/unistack-org/pkgdash/internal/models"
pb "git.unistack.org/unistack-org/pkgdash/proto"
"github.com/golang-migrate/migrate/v4"
mpgx "github.com/golang-migrate/migrate/v4/database/pgx"
"github.com/golang-migrate/migrate/v4/source/iofs"
"github.com/lib/pq"
"go.unistack.org/micro/v4/logger"
"git.unistack.org/unistack-org/pkgdash/internal/config"
"git.unistack.org/unistack-org/pkgdash/internal/models"
pb "git.unistack.org/unistack-org/pkgdash/proto"
)
const (

View File

@@ -1,3 +1,5 @@
//go:build ignore
package postgres
import (