moving remote pkg per new multi-binary structure

This commit is contained in:
Brad Rydzewski 2015-05-17 11:45:09 -07:00
parent 137fb62e85
commit 40a9543c0c
8 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@ import (
"github.com/gin-gonic/gin"
"github.com/drone/drone/remote/github"
"github.com/drone/drone/pkg/remote/github"
"github.com/drone/drone/server"
"github.com/drone/drone/server/session"
"github.com/drone/drone/settings"

View file

@ -7,8 +7,8 @@ import (
"github.com/drone/drone/common"
"github.com/drone/drone/pkg/bus"
"github.com/drone/drone/pkg/remote"
"github.com/drone/drone/pkg/store"
"github.com/drone/drone/remote"
)
type Updater interface {

View file

@ -9,7 +9,7 @@ import (
"github.com/drone/drone/common"
"github.com/drone/drone/common/httputil"
"github.com/drone/drone/common/sshutil"
"github.com/drone/drone/remote"
"github.com/drone/drone/pkg/remote"
)
// repoResp is a data structure used for sending

View file

@ -9,8 +9,8 @@ import (
"github.com/drone/drone/common"
"github.com/drone/drone/pkg/bus"
"github.com/drone/drone/pkg/queue"
"github.com/drone/drone/pkg/remote"
"github.com/drone/drone/pkg/store"
"github.com/drone/drone/remote"
"github.com/drone/drone/runner"
"github.com/drone/drone/server/session"
"github.com/drone/drone/settings"