Added a callout to fuseutil.NewFileSystemServer.

geesefs-0-30-9
Aaron Jacobs 2015-03-25 09:18:56 +11:00
parent 485f5d64fc
commit cdfc7045b5
1 changed files with 4 additions and 1 deletions

5
doc.go
View File

@ -19,7 +19,10 @@
// * 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.
// //
// * The Server interface, which a type in your daemon must implement. // * The Server interface, which your daemon must implement.
//
// * fuseutil.NewFileSystemServer, which offers a convenient way to implement
// the Server interface.
// //
// * Mount, a function that allows for mounting a Server as a file system. // * Mount, a function that allows for mounting a Server as a file system.
// //