...

Source file src/github.com/moby/sys/mountinfo/mountinfo_windows.go

Documentation: github.com/moby/sys/mountinfo

     1  package mountinfo
     2  
     3  func parseMountTable(_ FilterFunc) ([]*Info, error) {
     4  	// Do NOT return an error!
     5  	return nil, nil
     6  }
     7  
     8  func mounted(_ string) (bool, error) {
     9  	return false, nil
    10  }
    11  

View as plain text