From b5fbe5df9808dd9f9d986fbd5a9d084c5eb2d094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arkadiusz=20Rychli=C5=84ski?= Date: Tue, 8 Nov 2022 11:45:01 +0100 Subject: [PATCH] =?UTF-8?q?Poprawiona=20nazwa=20modu=C5=82u=20(dodany=20ad?= =?UTF-8?q?res)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmd/multisql/multisql.go | 5 +++-- go.mod | 2 +- mgr/mgr.go | 5 +++-- psql/psql.go | 3 ++- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/cmd/multisql/multisql.go b/cmd/multisql/multisql.go index 436d174..1537e71 100644 --- a/cmd/multisql/multisql.go +++ b/cmd/multisql/multisql.go @@ -1,10 +1,11 @@ package main import ( - "multisql/cfg" - "multisql/mgr" "os" + "gitlab161.poland.asseco.corp/cyfrowagranica/tools/multisql/cfg" + "gitlab161.poland.asseco.corp/cyfrowagranica/tools/multisql/mgr" + "log" ) diff --git a/go.mod b/go.mod index 720da0b..cd41763 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module multisql +module gitlab161.poland.asseco.corp/cyfrowagranica/tools/multisql go 1.19 diff --git a/mgr/mgr.go b/mgr/mgr.go index c9bc538..7f625fa 100644 --- a/mgr/mgr.go +++ b/mgr/mgr.go @@ -3,12 +3,13 @@ package mgr import ( "fmt" "log" - "multisql/cfg" - "multisql/psql" "os" "path" "sync" "time" + + "gitlab161.poland.asseco.corp/cyfrowagranica/tools/multisql/cfg" + "gitlab161.poland.asseco.corp/cyfrowagranica/tools/multisql/psql" ) type Manager struct { diff --git a/psql/psql.go b/psql/psql.go index c2296dd..6c0cdb9 100644 --- a/psql/psql.go +++ b/psql/psql.go @@ -3,12 +3,13 @@ package psql import ( "fmt" "log" - "multisql/cfg" "os" "os/exec" "path" "path/filepath" "runtime" + + "gitlab161.poland.asseco.corp/cyfrowagranica/tools/multisql/cfg" ) type Instance struct {