mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
Move the progress package up into the client as a temporary shared location for common clients like CLI and compose. The progress package is used by the daemon to write progress updates to some sink, typically a streamformatter. This package is of little use to API clients as this package does not provide any facilities to consume the progress updates. Co-authored-by: Cory Snider <csnider@mirantis.com> Signed-off-by: Austin Vazquez <austin.vazquez@docker.com>
15 lines
326 B
Modula-2
15 lines
326 B
Modula-2
module github.com/moby/moby/api
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/docker/go-units v0.5.0
|
|
github.com/moby/docker-image-spec v1.3.1
|
|
github.com/opencontainers/go-digest v1.0.0
|
|
github.com/opencontainers/image-spec v1.1.1
|
|
gotest.tools/v3 v3.5.2
|
|
pgregory.net/rapid v1.2.0
|
|
)
|
|
|
|
require github.com/google/go-cmp v0.7.0 // indirect
|