Categorygithub.com/KyleSanderson/fuse
repositorypackage
0.0.0-20210405001934-19a2666faa3d
Repository: https://github.com/kylesanderson/fuse.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

github.com/KyleSanderson/fuse -- Filesystems in Go

github.com/KyleSanderson/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. github.com/KyleSanderson/fuse embraces Go fully for safety and ease of programming.

Here’s how to get going:

go get github.com/KyleSanderson/fuse

Website: http://github.com/KyleSanderson/fuse/

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

API docs: http://godoc.org/github.com/KyleSanderson/fuse

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