2018-04-17 20:50:28 +00:00
|
|
|
package mounts // import "github.com/docker/docker/volume/mounts"
|
2015-09-10 02:23:06 +00:00
|
|
|
|
2017-08-01 17:32:44 +00:00
|
|
|
func (p *windowsParser) HasResource(m *MountPoint, absolutePath string) bool {
|
2015-11-18 10:04:23 +00:00
|
|
|
return false
|
|
|
|
}
|
2017-08-01 17:32:44 +00:00
|
|
|
func (p *linuxParser) HasResource(m *MountPoint, absolutePath string) bool {
|
|
|
|
return false
|
2015-10-23 20:57:57 +00:00
|
|
|
}
|