mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 23:10:01 +00:00
67ac8db190
* Upstep Go dependencies * tiny linter fix * Tidy
13 lines
187 B
Go
13 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()
|
|
}
|