github.com/slspeek/camlistore_namedsearch@v0.0.0-20140519202248-ed6f70f7721a/third_party/bazil.org/fuse/README.md (about)

     1  bazil.org/fuse -- Filesystems in Go
     2  ===================================
     3  
     4  `bazil.org/fuse` is a Go library for writing FUSE userspace
     5  filesystems.
     6  
     7  It is a from-scratch implementation of the kernel-userspace
     8  communication protocol, and does not use the C library from the
     9  project called FUSE. `bazil.org/fuse` embraces Go fully for safety and
    10  ease of programming.
    11  
    12  Here’s how to get going:
    13  
    14      go get bazil.org/fuse
    15  
    16  Website: http://bazil.org/fuse/
    17  
    18  Github repository: https://github.com/bazillion/fuse
    19  
    20  API docs: http://godoc.org/bazil.org/fuse
    21  
    22  Our thanks to Russ Cox for his fuse library, which this project is
    23  based on.