| 68 | } |
| 69 | |
| 70 | type fuseFileNode struct { |
| 71 | fuseNode |
| 72 | } |
| 73 | |
| 74 | func (f *fuseFileNode) Open(ctx context.Context, _ uint32) (gofusefs.FileHandle, uint32, syscall.Errno) { |
| 75 | reader, err := f.entry.(fs.File).Open(ctx) //nolint:forcetypeassert |
nothing calls this directly
no outgoing calls
no test coverage detected