fuse: add missing type assertion for optional interfaces

This commit is contained in:
Michael Eischer
2024-09-09 22:37:08 +02:00
parent 6ec2b62ec5
commit e9940f39dc
3 changed files with 8 additions and 0 deletions

View File

@@ -20,6 +20,8 @@ import (
// Statically ensure that *dir implement those interface
var _ = fs.HandleReadDirAller(&dir{})
var _ = fs.NodeGetxattrer(&dir{})
var _ = fs.NodeListxattrer(&dir{})
var _ = fs.NodeStringLookuper(&dir{})
type dir struct {