2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-02 19:49:44 +00:00
restic/vendor/src/bazil.org/fuse
2016-02-20 18:33:06 +01:00
..
doc Properly vendor dependencies with gb-vendor 2016-02-20 18:33:06 +01:00
examples Move things around for gb 2016-02-20 17:31:20 +01:00
fs Properly vendor dependencies with gb-vendor 2016-02-20 18:33:06 +01:00
fuseutil Properly vendor dependencies with gb-vendor 2016-02-20 18:33:06 +01:00
syscallx Properly vendor dependencies with gb-vendor 2016-02-20 18:33:06 +01:00
buffer.go Move things around for gb 2016-02-20 17:31:20 +01:00
debug.go Move things around for gb 2016-02-20 17:31:20 +01:00
error_darwin.go Move things around for gb 2016-02-20 17:31:20 +01:00
error_freebsd.go Move things around for gb 2016-02-20 17:31:20 +01:00
error_linux.go Move things around for gb 2016-02-20 17:31:20 +01:00
error_std.go Move things around for gb 2016-02-20 17:31:20 +01:00
fuse_kernel_darwin.go Move things around for gb 2016-02-20 17:31:20 +01:00
fuse_kernel_freebsd.go Move things around for gb 2016-02-20 17:31:20 +01:00
fuse_kernel_linux.go Move things around for gb 2016-02-20 17:31:20 +01:00
fuse_kernel_std.go Move things around for gb 2016-02-20 17:31:20 +01:00
fuse_kernel_test.go Move things around for gb 2016-02-20 17:31:20 +01:00
fuse_kernel.go Move things around for gb 2016-02-20 17:31:20 +01:00
fuse.go Properly vendor dependencies with gb-vendor 2016-02-20 18:33:06 +01:00
LICENSE Move things around for gb 2016-02-20 17:31:20 +01:00
mount_darwin.go Move things around for gb 2016-02-20 17:31:20 +01:00
mount_freebsd.go Move things around for gb 2016-02-20 17:31:20 +01:00
mount_linux.go Move things around for gb 2016-02-20 17:31:20 +01:00
options_darwin.go Move things around for gb 2016-02-20 17:31:20 +01:00
options_freebsd.go Move things around for gb 2016-02-20 17:31:20 +01:00
options_helper_test.go Move things around for gb 2016-02-20 17:31:20 +01:00
options_linux.go Move things around for gb 2016-02-20 17:31:20 +01:00
options_nocomma_test.go Move things around for gb 2016-02-20 17:31:20 +01:00
options_test.go Move things around for gb 2016-02-20 17:31:20 +01:00
options.go Move things around for gb 2016-02-20 17:31:20 +01:00
protocol.go Move things around for gb 2016-02-20 17:31:20 +01:00
README.md Move things around for gb 2016-02-20 17:31:20 +01:00
unmount_linux.go Move things around for gb 2016-02-20 17:31:20 +01:00
unmount_std.go Move things around for gb 2016-02-20 17:31:20 +01:00
unmount.go Move things around for gb 2016-02-20 17:31:20 +01:00

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.