Added callouts to the samples.

geesefs-0-30-9
Aaron Jacobs 2015-03-24 16:41:03 +11:00
parent 336525bfec
commit b5f3f11782
2 changed files with 9 additions and 1 deletions

View File

@ -24,5 +24,8 @@ The chief improvements and/or differences from the bazil.org packages are:
The very large disadvantage over using the bazil.org packages is that many The very large disadvantage over using the bazil.org packages is that many
features have not yet been exposed. features have not yet been exposed.
Make sure to see the sub-packages of the [samples][] package.
[bazil]: http://godoc.org/bazil.org/fuse [bazil]: http://godoc.org/bazil.org/fuse
[bazil-fs]: http://godoc.org/bazil.org/fuse/fs [bazil-fs]: http://godoc.org/bazil.org/fuse/fs
[samples]: http://godoc.org/github.com/jacobsa/fuse/samples

7
doc.go
View File

@ -19,7 +19,12 @@
// * The fuseops package, which defines the operations that fuse might send // * The fuseops package, which defines the operations that fuse might send
// to your userspace daemon. // to your userspace daemon.
// //
// * Mount, a function that allows for mounting a file system. // * The Server interface, which a type in your daemon must implement.
//
// * Mount, a function that allows for mounting a Server as a file system.
//
// Make sure to see the examples in the sub-packages of samples/, which double
// as tests for this package: http://godoc.org/github.com/jacobsa/fuse/samples
// //
// In order to use this package to mount file systems on OS X, the system must // In order to use this package to mount file systems on OS X, the system must
// have FUSE for OS X installed (see http://osxfuse.github.io/). Do note that // have FUSE for OS X installed (see http://osxfuse.github.io/). Do note that