refactor: move container into pkg

This commit is contained in:
Simon Aronsson 2019-07-21 20:14:28 +02:00
parent e109a7a6ce
commit 74ce92760c
19 changed files with 7 additions and 7 deletions

View file

@ -6,8 +6,8 @@ import (
"time"
"github.com/containrrr/watchtower/actions"
"github.com/containrrr/watchtower/container"
"github.com/containrrr/watchtower/container/mocks"
"github.com/containrrr/watchtower/pkg/container"
"github.com/containrrr/watchtower/pkg/container/mocks"
"github.com/docker/docker/api/types"
t "github.com/containrrr/watchtower/pkg/types"

View file

@ -11,7 +11,7 @@ import (
log "github.com/sirupsen/logrus"
"github.com/containrrr/watchtower/container"
"github.com/containrrr/watchtower/pkg/container"
)
// CheckForMultipleWatchtowerInstances will ensure that there are not multiple instances of the

View file

@ -4,7 +4,7 @@ import (
"math/rand"
"time"
"github.com/containrrr/watchtower/container"
"github.com/containrrr/watchtower/pkg/container"
t "github.com/containrrr/watchtower/pkg/types"
log "github.com/sirupsen/logrus"
)