delete the pkg directory

This commit is contained in:
Dawid Wysokiński 2021-07-16 17:49:01 +02:00
parent ddbef6ac86
commit 244cbadb36
23 changed files with 8 additions and 8 deletions

View File

@ -9,9 +9,9 @@ import (
"syscall"
"github.com/tribalwarshelp/dataupdater/cmd/internal"
twhelpcron "github.com/tribalwarshelp/dataupdater/pkg/cron"
"github.com/tribalwarshelp/dataupdater/pkg/postgres"
"github.com/tribalwarshelp/dataupdater/pkg/queue"
twhelpcron "github.com/tribalwarshelp/dataupdater/cron"
"github.com/tribalwarshelp/dataupdater/postgres"
"github.com/tribalwarshelp/dataupdater/queue"
)
func main() {

View File

@ -10,8 +10,8 @@ import (
"syscall"
"github.com/tribalwarshelp/dataupdater/cmd/internal"
"github.com/tribalwarshelp/dataupdater/pkg/postgres"
"github.com/tribalwarshelp/dataupdater/pkg/queue"
"github.com/tribalwarshelp/dataupdater/postgres"
"github.com/tribalwarshelp/dataupdater/queue"
)
func main() {

View File

@ -4,7 +4,7 @@ import (
"github.com/go-pg/pg/v10"
"github.com/pkg/errors"
"github.com/tribalwarshelp/dataupdater/pkg/queue"
"github.com/tribalwarshelp/dataupdater/queue"
)
type Config struct {

View File

@ -10,7 +10,7 @@ import (
"github.com/robfig/cron/v3"
"github.com/tribalwarshelp/dataupdater/pkg/queue"
"github.com/tribalwarshelp/dataupdater/queue"
)
type Cron struct {

View File

@ -8,7 +8,7 @@ import (
"github.com/tribalwarshelp/shared/tw/twdataloader"
"github.com/tribalwarshelp/shared/tw/twmodel"
"github.com/tribalwarshelp/dataupdater/pkg/postgres"
"github.com/tribalwarshelp/dataupdater/postgres"
)
type taskLoadServersAndUpdateData struct {