mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fc21bf280b
Signed-off-by: John Howard <jhoward@microsoft.com>
13 lines
350 B
Go
13 lines
350 B
Go
// +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
|
|
}
|