mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 23:10:01 +00:00
be011b1641
Bumps [github.com/spf13/viper](https://github.com/spf13/viper) from 1.13.0 to 1.14.0. - [Release notes](https://github.com/spf13/viper/releases) - [Commits](https://github.com/spf13/viper/compare/v1.13.0...v1.14.0) --- updated-dependencies: - dependency-name: github.com/spf13/viper dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33 lines
637 B
Go
33 lines
637 B
Go
//go:build appengine || (!darwin && !dragonfly && !freebsd && !openbsd && !linux && !netbsd && !solaris && !windows)
|
|
// +build appengine !darwin,!dragonfly,!freebsd,!openbsd,!linux,!netbsd,!solaris,!windows
|
|
|
|
package viper
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
|
|
"github.com/fsnotify/fsnotify"
|
|
)
|
|
|
|
func newWatcher() (*watcher, error) {
|
|
return &watcher{}, fmt.Errorf("fsnotify not supported on %s", runtime.GOOS)
|
|
}
|
|
|
|
type watcher struct {
|
|
Events chan fsnotify.Event
|
|
Errors chan error
|
|
}
|
|
|
|
func (*watcher) Close() error {
|
|
return nil
|
|
}
|
|
|
|
func (*watcher) Add(name string) error {
|
|
return nil
|
|
}
|
|
|
|
func (*watcher) Remove(name string) error {
|
|
return nil
|
|
}
|