mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-12-17 09:42:29 +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
|
||
|
|
}
|