Files
overlayfs/overlayfs_other.go
Matheus Sampaio Queiroga ecd4fae833
All checks were successful
Golang test / go-test (push) Successful in 39s
Minor changes
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
2025-08-01 19:10:23 -03:00

14 lines
459 B
Go

//go:build !(linux || windows || (cgo && (darwin || freebsd || netbsd || openbsd)))
package overlayfs
import "context"
type StorageType = *struct{}
// Current platform not supported to mount Overlayfs or Similar, returning ErrNotAvaible
func OverlayfsAvaible() bool { return false }
// Current platform not supported to mount Overlayfs or Similar, returning ErrNotAvaible
func (overlay *Overlayfs) Mount(_ context.Context) error { return ErrNotAvaible }