containerd/jobs.go
2015-11-05 15:49:13 -08:00

10 lines
131 B
Go

package containerd
type Job interface {
}
type CreateJob struct {
ID string
BundlePath string
Err chan error
}