forked from mirrors/gotosocial
67ac8db190
* Upstep Go dependencies * tiny linter fix * Tidy
12 lines
187 B
Go
12 lines
187 B
Go
//go:build !js
|
|
// +build !js
|
|
|
|
package viper
|
|
|
|
import "github.com/fsnotify/fsnotify"
|
|
|
|
type watcher = fsnotify.Watcher
|
|
|
|
func newWatcher() (*watcher, error) {
|
|
return fsnotify.NewWatcher()
|
|
}
|