blob: d7e2566e341d351b3eabf5b183f5e362793dca5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package abi
import (
"context"
"github.com/containers/podman/v3/libpod/events"
"github.com/containers/podman/v3/pkg/domain/entities"
)
func (ic *ContainerEngine) Events(ctx context.Context, opts entities.EventsOptions) error {
readOpts := events.ReadOptions{FromStart: opts.FromStart, Stream: opts.Stream, Filters: opts.Filter, EventChannel: opts.EventChan, Since: opts.Since, Until: opts.Until}
return ic.Libpod.Events(ctx, readOpts)
}
|