doc.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // Copyright 2015 Google Inc. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. // Package fuse enables writing and mounting user-space file systems.
  15. //
  16. // The primary elements of interest are:
  17. //
  18. // * The fuseops package, which defines the operations that fuse might send
  19. // to your userspace daemon.
  20. //
  21. // * The Server interface, which your daemon must implement.
  22. //
  23. // * fuseutil.NewFileSystemServer, which offers a convenient way to implement
  24. // the Server interface.
  25. //
  26. // * Mount, a function that allows for mounting a Server as a file system.
  27. //
  28. // Make sure to see the examples in the sub-packages of samples/, which double
  29. // as tests for this package: http://godoc.org/github.com/jacobsa/fuse/samples
  30. //
  31. // In order to use this package to mount file systems on OS X, the system must
  32. // have FUSE for OS X installed (see http://osxfuse.github.io/). Do note that
  33. // there are several OS X-specific oddities; grep through the documentation for
  34. // more info.
  35. package fuse