containerd/jobs.go

11 lines
131 B
Go
Raw Normal View History

2015-11-05 23:29:53 +00:00
package containerd
type Job interface {
}
type CreateJob struct {
2015-11-05 23:49:13 +00:00
ID string
BundlePath string
Err chan error
2015-11-05 23:29:53 +00:00
}