mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-30 15:19:01 +08:00
18 lines
246 B
Go
18 lines
246 B
Go
|
package filesys
|
||
|
|
||
|
import "bazil.org/fuse/fs"
|
||
|
|
||
|
type WFS struct {
|
||
|
filer string
|
||
|
}
|
||
|
|
||
|
func NewSeaweedFileSystem(filer string) *WFS {
|
||
|
return &WFS{
|
||
|
filer: filer,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (wfs *WFS) Root() (fs.Node, error) {
|
||
|
return &Dir{Path: "/", wfs: wfs}, nil
|
||
|
}
|