restic/Godeps/_workspace/src/bazil.org/fuse
Matthieu Rakotojaona 3a82612244 Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
..
doc Add simple mount command 2015-07-19 23:03:32 +02:00
examples Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
fs Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
fuseutil Add simple mount command 2015-07-19 23:03:32 +02:00
syscallx Add simple mount command 2015-07-19 23:03:32 +02:00
.gitattributes Add simple mount command 2015-07-19 23:03:32 +02:00
.gitignore Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
LICENSE Add simple mount command 2015-07-19 23:03:32 +02:00
README.md Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
buffer.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
debug.go Add simple mount command 2015-07-19 23:03:32 +02:00
error_darwin.go Add simple mount command 2015-07-19 23:03:32 +02:00
error_freebsd.go Add simple mount command 2015-07-19 23:03:32 +02:00
error_linux.go Add simple mount command 2015-07-19 23:03:32 +02:00
error_std.go Add simple mount command 2015-07-19 23:03:32 +02:00
fuse.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
fuse_kernel.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
fuse_kernel_darwin.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
fuse_kernel_freebsd.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
fuse_kernel_linux.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
fuse_kernel_std.go Add simple mount command 2015-07-19 23:03:32 +02:00
fuse_kernel_test.go Add simple mount command 2015-07-19 23:03:32 +02:00
mount_darwin.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
mount_freebsd.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
mount_linux.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
options.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
options_darwin.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
options_freebsd.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
options_helper_test.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
options_linux.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
options_nocomma_test.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
options_test.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
protocol.go Update bazil.org/fuse version 2015-07-19 23:03:32 +02:00
unmount.go Add simple mount command 2015-07-19 23:03:32 +02:00
unmount_linux.go Add simple mount command 2015-07-19 23:03:32 +02:00
unmount_std.go Add simple mount command 2015-07-19 23:03:32 +02: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/bazil/fuse

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

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