Tar returns a tar archive of responses to provisioner operations.
(responses *Responses)
| 381 | |
| 382 | // Tar returns a tar archive of responses to provisioner operations. |
| 383 | func Tar(responses *Responses) ([]byte, error) { |
| 384 | logger := slog.Make() |
| 385 | return TarWithOptions(context.Background(), logger, responses) |
| 386 | } |
| 387 | |
| 388 | // TarWithOptions returns a tar archive of responses to provisioner operations, |
| 389 | // but it gives more insight into the archiving process. |