github.com/mattolenik/notify@v0.9.1/watcher_notimplemented.go (about)

     1  // Copyright (c) 2014-2018 The Notify Authors. All rights reserved.
     2  // Use of this source code is governed by the MIT license that can be
     3  // found in the LICENSE file.
     4  
     5  // +build !darwin,!linux,!freebsd,!dragonfly,!netbsd,!openbsd,!windows
     6  // +build !kqueue,!solaris
     7  
     8  package notify
     9  
    10  import "errors"
    11  
    12  // newWatcher stub.
    13  func newWatcher(chan<- EventInfo) watcher {
    14  	return watcherStub{errors.New("notify: not implemented")}
    15  }