blob: 35e282ee4533ec4d029697fa3ace11c471bee22c [file] [log] [blame]
// +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
}