Implemented Init.

geesefs-0-30-9
Aaron Jacobs 2015-03-02 14:14:49 +11:00
parent 6f93f4eba9
commit 2790095b6b
1 changed files with 8 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import (
"github.com/jacobsa/fuse/fuseutil"
"github.com/jacobsa/gcloud/syncutil"
"github.com/jacobsa/gcsfuse/timeutil"
"golang.org/x/net/context"
)
type memFS struct {
@ -56,3 +57,10 @@ func NewMemFS(
func (fs *memFS) checkInvariants() {
panic("TODO")
}
func (fs *memFS) Init(
ctx context.Context,
req *fuse.InitRequest) (resp *fuse.InitResponse, err error) {
resp = &fuse.InitResponse{}
return
}