podman/libpod/events/events_unsupported.go
Valentin Rothberg ea08765f40 go fmt: use go 1.18 conditional-build syntax
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
2022-03-18 09:11:53 +01:00

12 lines
280 B
Go

//go:build !linux
// +build !linux
package events
import "github.com/pkg/errors"
// NewEventer creates an eventer based on the eventer type
func NewEventer(options EventerOptions) (Eventer, error) {
return nil, errors.New("this function is not available for your platform")
}