mirror of
https://github.com/containers/podman.git
synced 2025-09-10 02:02:22 +08:00
12 lines
286 B
Go
12 lines
286 B
Go
//go:build !linux && !freebsd
|
|
// +build !linux,!freebsd
|
|
|
|
package events
|
|
|
|
import "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")
|
|
}
|