зеркало из https://github.com/microsoft/docker.git
14 строки
296 B
Go
14 строки
296 B
Go
// +build !windows
|
|
|
|
package layer
|
|
|
|
// SetOS writes the "os" file to the layer filestore
|
|
func (fm *fileMetadataTransaction) SetOS(os OS) error {
|
|
return nil
|
|
}
|
|
|
|
// GetOS reads the "os" file from the layer filestore
|
|
func (fms *fileMetadataStore) GetOS(layer ChainID) (OS, error) {
|
|
return "", nil
|
|
}
|