quorum/vendor/bazil.org/fuse
Zahoor Mohamed 11e7a712f4 swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
..
fs swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
fuseutil swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
LICENSE swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
README.md swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
buffer.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
debug.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
error_darwin.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
error_freebsd.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
error_linux.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
error_std.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
fuse.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
fuse.iml swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
fuse_darwin.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
fuse_freebsd.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
fuse_kernel.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
fuse_kernel_darwin.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
fuse_kernel_freebsd.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
fuse_kernel_linux.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
fuse_kernel_std.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
fuse_linux.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
mount.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
mount_darwin.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
mount_freebsd.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
mount_linux.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
options.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
options_darwin.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
options_freebsd.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
options_linux.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
protocol.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
unmount.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
unmount_linux.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01:00
unmount_std.go swarm/api: support mounting manifests via FUSE (#3690) 2017-03-23 14:56:06 +01: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.