summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/abi/events.go
blob: c999faeeefeaa8851dd177e698965c47ca2b87b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package abi

import (
	"context"

	"github.com/containers/libpod/libpod/events"
	"github.com/containers/libpod/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)
}