containerd/execution/supervisor.go

13 lines
138 B
Go
Raw Normal View History

package execution
type Supervisor struct {
}
type waiter interface {
Wait() (uint32, error)
}
func (s *Supervisor) Add(w waiter) {
}