filestore_unix.go 296 B

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