mirror of
https://github.com/go-gitea/gitea
synced 2024-11-19 00:11:24 +01:00
3270e7a443
* Update go-swagger * vendor
12 lines
322 B
Go
Vendored
12 lines
322 B
Go
Vendored
// Copyright 2013 The Go 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 darwin
|
|
|
|
package fsnotify
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
// note: this constant is not defined on BSD
|
|
const openMode = unix.O_EVTONLY | unix.O_CLOEXEC
|