()
| 22 | type DiskRepository struct{} |
| 23 | |
| 24 | func NewDiskRepository() (repo Repository) { |
| 25 | return DiskRepository{} |
| 26 | } |
| 27 | |
| 28 | func (repo DiskRepository) ReadManifest(inputPath string) (*Manifest, error) { |
| 29 | m := NewEmptyManifest() |
no outgoing calls
no test coverage detected