All checks were successful
Golang test / go-test (push) Successful in 39s
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
14 lines
459 B
Go
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 }
|