github.com/jaypipes/ghw@v0.21.1/pkg/snapshot/clonetree_stub.go (about)

     1  //go:build !linux
     2  // +build !linux
     3  
     4  //
     5  // Use and distribution licensed under the Apache license version 2.
     6  //
     7  // See the COPYING file in the root project directory for full text.
     8  //
     9  
    10  package snapshot
    11  
    12  func setupScratchDir(scratchDir string) error {
    13  	return nil
    14  }
    15  
    16  func ExpectedCloneStaticContent() []string {
    17  	return []string{}
    18  }
    19  
    20  func ExpectedCloneGPUContent() []string {
    21  	return []string{}
    22  }
    23  
    24  func ExpectedCloneNetContent() []string {
    25  	return []string{}
    26  }
    27  
    28  func ExpectedClonePCIContent() []string {
    29  	return []string{}
    30  }
    31  
    32  func ExpectedCloneUSBContent() []string {
    33  	return []string{}
    34  }