779cb69e6d
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
12 lines
219 B
Go
12 lines
219 B
Go
package containerd
|
|
|
|
type GetContainersEvent struct {
|
|
s *Supervisor
|
|
}
|
|
|
|
func (h *GetContainersEvent) Handle(e *Event) error {
|
|
for _, c := range h.s.containers {
|
|
e.Containers = append(e.Containers, c)
|
|
}
|
|
return nil
|
|
}
|