Contains the Concourse pipeline definition for building a line-server container
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
256 B

  1. package backends
  2. import (
  3. "errors"
  4. "time"
  5. )
  6. type Metadata struct {
  7. DeleteKey string
  8. Sha256sum string
  9. Mimetype string
  10. Size int64
  11. Expiry time.Time
  12. ArchiveFiles []string
  13. }
  14. var BadMetadata = errors.New("Corrupted metadata.")