mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
add initial queue to runner
This commit is contained in:
@@ -3,14 +3,18 @@ package runner
|
||||
import (
|
||||
"io"
|
||||
|
||||
"golang.org/x/net/context"
|
||||
|
||||
dockercli "github.com/fsouza/go-dockerclient"
|
||||
"github.com/iron-io/titan/runner/drivers"
|
||||
"github.com/iron-io/titan/runner/tasker"
|
||||
)
|
||||
|
||||
type containerTask struct {
|
||||
auth tasker.Auther
|
||||
cfg *Config
|
||||
ctx context.Context
|
||||
auth tasker.Auther
|
||||
cfg *Config
|
||||
canRun chan bool
|
||||
}
|
||||
|
||||
func (t *containerTask) Command() string { return "" }
|
||||
|
||||
Reference in New Issue
Block a user