blob: d766402a9729eec951f937546b4f230aba69b742 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//go:build !linux
// +build !linux
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")
}
|