filestore_unix.go 350 B

12345678910111213
  1. // +build !windows
  2. package layer
  3. // SetPlatform writes the "platform" file to the layer filestore
  4. func (fm *fileMetadataTransaction) SetPlatform(platform Platform) error {
  5. return nil
  6. }
  7. // GetPlatform reads the "platform" file from the layer filestore
  8. func (fms *fileMetadataStore) GetPlatform(layer ChainID) (Platform, error) {
  9. return "", nil
  10. }