1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-10-15 19:42:06 +00:00
forgejo-runner/vendor/github.com/andreaskoch/go-fswatch/watcher.go
Jesse Newland 5bffacf271 --watch
2019-02-09 20:39:09 -06:00

15 lines
300 B
Go

// Copyright 2013 Andreas Koch. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package fswatch
type Watcher interface {
Modified() chan bool
Moved() chan bool
Stopped() chan bool
Start()
Stop()
IsRunning() bool
}