File: watcher_stub.go

package info (click to toggle)
golang-github-rjeczalik-notify 0.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 436 kB
  • sloc: makefile: 3
file content (13 lines) | stat: -rw-r--r-- 556 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2014-2018 The Notify Authors. All rights reserved.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.

package notify

type watcherStub struct{ error }

// Following methods implement notify.watcher interface.
func (s watcherStub) Watch(string, Event) error          { return s }
func (s watcherStub) Rewatch(string, Event, Event) error { return s }
func (s watcherStub) Unwatch(string) (err error)         { return s }
func (s watcherStub) Close() error                       { return s }