perkeep/third_party/bazil.org/fuse
Eric Drechsel 826e1e2933 third_party: Update bazil.org/fuse
import bazil.org/fuse at 9802bb510ca4cd1c18ffc840cf6fe9ef5d1546a8

Change-Id: I8f50cc8aa779265f43fdfbcbee646015d3453d39
2014-06-09 02:47:29 +00:00
..
doc third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
fs third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
fuseutil third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
hellofs third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
syscallx third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
.gitattributes third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
.gitignore third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
LICENSE third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
README.md third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
debug.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
error_darwin.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
error_std.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
fuse.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
fuse_kernel.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
fuse_kernel_darwin.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
fuse_kernel_linux.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
fuse_kernel_std.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
mount_darwin.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
mount_linux.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
unmount.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
unmount_linux.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
unmount_std.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00

README.md

bazil.org/fuse -- Filesystems in Go

bazil.org/fuse is a Go library for writing FUSE userspace filesystems.

It is a from-scratch implementation of the kernel-userspace communication protocol, and does not use the C library from the project called FUSE. bazil.org/fuse embraces Go fully for safety and ease of programming.

Heres how to get going:

go get bazil.org/fuse

Website: http://bazil.org/fuse/

Github repository: https://github.com/bazillion/fuse

API docs: http://godoc.org/bazil.org/fuse

Our thanks to Russ Cox for his fuse library, which this project is based on.