Files
bee/audit/internal/platform/install_to_ram_other.go
2026-04-07 20:21:06 +03:00

14 lines
282 B
Go

//go:build !linux
package platform
import "errors"
func loopChangeFD(loopDev, newFile string) error {
return errors.New("LOOP_CHANGE_FD not available on this platform")
}
func bindMount(src, dst string) error {
return errors.New("bind mount not available on this platform")
}