go.mondoo.com/cnquery@v0.0.0-20231005093811-59568235f6ea/providers/os/connection/snapshot/mount_other.go (about)

     1  // Copyright (c) Mondoo, Inc.
     2  // SPDX-License-Identifier: BUSL-1.1
     3  
     4  //go:build !linux
     5  // +build !linux
     6  
     7  package snapshot
     8  
     9  import "errors"
    10  
    11  func Mount(attachedFS string, scanDir string, fsType string, opts []string) error {
    12  	return errors.New("unsupported platform")
    13  }
    14  
    15  func Unmount(scanDir string) error {
    16  	return errors.New("unsupported platform")
    17  }