moving queue package
This commit is contained in:
parent
f58b48d329
commit
137fb62e85
12 changed files with 10 additions and 10 deletions
2
drone.go
2
drone.go
|
@ -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"
|
||||
|
|
|
@ -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")
|
|
@ -4,7 +4,7 @@ import (
|
|||
"sync"
|
||||
"testing"
|
||||
|
||||
"github.com/drone/drone/queue"
|
||||
"github.com/drone/drone/pkg/queue"
|
||||
. "github.com/franela/goblin"
|
||||
)
|
||||
|
|
@ -7,7 +7,7 @@ import (
|
|||
"net/http"
|
||||
"net/url"
|
||||
|
||||
"github.com/drone/drone/queue"
|
||||
"github.com/drone/drone/pkg/queue"
|
||||
)
|
||||
|
||||
type Client struct {
|
|
@ -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"
|
||||
)
|
||||
|
|
@ -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"
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
|
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue