refactor: Decompose delete func

This commit is contained in:
Felicitas Pojtinger
2021-12-07 23:01:44 +01:00
parent a019ccd5ea
commit c6fbd58256
4 changed files with 145 additions and 152 deletions

View File

@@ -21,4 +21,6 @@ var (
ErrCompressionFormatOnlyRegularSupport = errors.New("this compression format only supports regular files, not i.e. tape drives")
ErrCompressionFormatRequiresLargerRecordSize = errors.New("this compression format requires a larger record size")
ErrCompressionLevelUnsupported = errors.New("compression level is unsupported")
ErrMissingTarHeader = errors.New("tar header is missing")
)