blob: fe8a4f8b2afaf43fc94cc474c57639dab2cbde19 [file] [log] [blame]
// +build !windows
package layer
// SetPlatform writes the "platform" file to the layer filestore
func (fm *fileMetadataTransaction) SetPlatform(platform Platform) error {
return nil
}
// GetPlatform reads the "platform" file from the layer filestore
func (fms *fileMetadataStore) GetPlatform(layer ChainID) (Platform, error) {
return "", nil
}