github.com/arieschain/arieschain@v0.0.0-20191023063405-37c074544356/accounts/keystore/watch_fallback.go (about) 1 // +build ios linux,arm64 windows !darwin,!freebsd,!linux,!netbsd,!solaris 2 3 // This is the fallback implementation of directory watching. 4 // It is used on unsupported platforms. 5 6 package keystore 7 8 type watcher struct{ running bool } 9 10 func newWatcher(*accountCache) *watcher { return new(watcher) } 11 func (*watcher) start() {} 12 func (*watcher) close() {}