blob: a91c576134794cefe20753dd0f2c09eaa02c1a39 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//+build !fuchsia
package fswatch
import (
"github.com/fsnotify/fsnotify"
)
type Event = fsnotify.Event
var Create = fsnotify.Create
var Write = fsnotify.Write
var Remove = fsnotify.Remove
var Rename = fsnotify.Rename
var Chmod = fsnotify.Chmod
type Watcher = fsnotify.Watcher
var NewWatcher = fsnotify.NewWatcher