perkeep/third_party/bazil.org/fuse
Tommi Virtanen 6cda29582b third_party: Switch FUSE library to bazil.org/fuse
import bazil.org/fuse at f6649cd46fb76b1e04ba9eeffb773cb189278d31
remove code.google.com/p/rsc/fuse.

Huge thanks to Tommi Virtanen for the fuse support.

Change-Id: I44b95ac1ea344648593c7376f83ca675a56077b3
2014-01-24 13:28:08 -08:00
..
fs third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
fuseutil third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
hellofs third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08: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: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
README.md third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
debug.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
error_darwin.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08: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: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08: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: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
mount_linux.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08: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.