添加依赖库

This commit is contained in:
lifei6671
2017-04-29 22:06:11 +08:00
parent ae8f4532f6
commit d38417535a
477 changed files with 177332 additions and 9 deletions

8
vendor/github.com/boltdb/bolt/boltsync_unix.go generated vendored Normal file
View File

@@ -0,0 +1,8 @@
// +build !windows,!plan9,!linux,!openbsd
package bolt
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return db.file.Sync()
}