mirror of
https://github.com/containerd/containerd.git
synced 2026-07-27 03:39:36 +00:00
13 lines
138 B
Go
13 lines
138 B
Go
package execution
|
|
|
|
type Supervisor struct {
|
|
}
|
|
|
|
type waiter interface {
|
|
Wait() (uint32, error)
|
|
}
|
|
|
|
func (s *Supervisor) Add(w waiter) {
|
|
|
|
}
|