(filePath string, length int)
| 271 | } |
| 272 | |
| 273 | func defaultFileHeader(filePath string, length int) *tar.Header { |
| 274 | return &tar.Header{ |
| 275 | Name: filePath, |
| 276 | Size: int64(length), |
| 277 | Mode: 0o644, |
| 278 | Uid: 1000, |
| 279 | Gid: 1000, |
| 280 | } |
| 281 | } |
no outgoing calls
no test coverage detected