MCPcopy Index your code
hub / github.com/coder/coder / Tar

Function Tar

provisioner/echo/serve.go:383–386  ·  view source on GitHub ↗

Tar returns a tar archive of responses to provisioner operations.

(responses *Responses)

Source from the content-addressed store, hash-verified

381
382// Tar returns a tar archive of responses to provisioner operations.
383func 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.

Calls 1

TarWithOptionsFunction · 0.85