10 lines
131 B
Go
10 lines
131 B
Go
package containerd
|
|
|
|
type Job interface {
|
|
}
|
|
|
|
type CreateJob struct {
|
|
ID string
|
|
BundlePath string
|
|
Err chan error
|
|
}
|