mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-24 03:47:45 +08:00
29 lines
483 B
Go
29 lines
483 B
Go
// +build !nofuse,!openbsd,!netbsd
|
|
|
|
package ipns
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
"bazil.org/fuse"
|
|
"bazil.org/fuse/fs"
|
|
)
|
|
|
|
type Link struct {
|
|
Target string
|
|
}
|
|
|
|
func (l *Link) Attr(ctx context.Context, a *fuse.Attr) error {
|
|
log.Debug("Link attr.")
|
|
a.Mode = os.ModeSymlink | 0555
|
|
return nil
|
|
}
|
|
|
|
func (l *Link) Readlink(ctx context.Context, req *fuse.ReadlinkRequest) (string, error) {
|
|
log.Debugf("ReadLink: %s", l.Target)
|
|
return l.Target, nil
|
|
}
|
|
|
|
var _ fs.NodeReadlinker = (*Link)(nil)
|