blob: 50d7727cedbe9c50ecdf3b357d73919de14a92ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package abi
import (
"context"
"github.com/containers/libpod/v2/libpod/events"
"github.com/containers/libpod/v2/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(readOpts)
}
|