moving queue package

This commit is contained in:
Brad Rydzewski 2015-05-17 11:42:56 -07:00
parent f58b48d329
commit 137fb62e85
12 changed files with 10 additions and 10 deletions

View file

@ -14,8 +14,8 @@ import (
"github.com/elazarl/go-bindata-assetfs"
eventbus "github.com/drone/drone/pkg/bus/builtin"
queue "github.com/drone/drone/pkg/queue/builtin"
store "github.com/drone/drone/pkg/store/builtin"
queue "github.com/drone/drone/queue/builtin"
runner "github.com/drone/drone/runner/builtin"
_ "net/http/pprof"

View file

@ -4,7 +4,7 @@ import (
"errors"
"sync"
"github.com/drone/drone/queue"
"github.com/drone/drone/pkg/queue"
)
var ErrNotFound = errors.New("work item not found")

View file

@ -4,7 +4,7 @@ import (
"sync"
"testing"
"github.com/drone/drone/queue"
"github.com/drone/drone/pkg/queue"
. "github.com/franela/goblin"
)

View file

@ -7,7 +7,7 @@ import (
"net/http"
"net/url"
"github.com/drone/drone/queue"
"github.com/drone/drone/pkg/queue"
)
type Client struct {

View file

@ -3,7 +3,7 @@ package plugin
import (
"net/http"
"github.com/drone/drone/queue"
"github.com/drone/drone/pkg/queue"
"github.com/gin-gonic/gin"
)

View file

@ -10,7 +10,7 @@ import (
"time"
"github.com/drone/drone/common"
"github.com/drone/drone/queue"
"github.com/drone/drone/pkg/queue"
"github.com/samalba/dockerclient"
log "github.com/Sirupsen/logrus"

View file

@ -4,7 +4,7 @@ import (
"io"
"github.com/drone/drone/common"
"github.com/drone/drone/queue"
"github.com/drone/drone/pkg/queue"
)
type Runner interface {

View file

@ -7,8 +7,8 @@ import (
"time"
"github.com/drone/drone/common"
"github.com/drone/drone/pkg/queue"
"github.com/drone/drone/pkg/yaml/inject"
"github.com/drone/drone/queue"
"github.com/gin-gonic/gin"
// "github.com/gin-gonic/gin/binding"
)

View file

@ -5,10 +5,10 @@ import (
log "github.com/Sirupsen/logrus"
"github.com/drone/drone/common"
"github.com/drone/drone/pkg/queue"
"github.com/drone/drone/pkg/yaml"
"github.com/drone/drone/pkg/yaml/inject"
"github.com/drone/drone/pkg/yaml/matrix"
"github.com/drone/drone/queue"
"github.com/gin-gonic/gin"
)

View file

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