vendor: github.com/moby/moby/api, moby/moby/client master

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-10-27 20:48:23 +01:00
parent 10281ff5a5
commit 6ed16a2cc1
45 changed files with 398 additions and 249 deletions

View File

@ -12,10 +12,10 @@ import (
"time"
"github.com/docker/cli/cli/command/formatter"
"github.com/moby/moby/api/pkg/progress"
"github.com/moby/moby/api/pkg/streamformatter"
"github.com/moby/moby/api/types/swarm"
"github.com/moby/moby/client"
"github.com/moby/moby/client/pkg/progress"
"github.com/moby/moby/client/pkg/streamformatter"
)
var (

View File

@ -5,8 +5,8 @@ import (
"strconv"
"testing"
"github.com/moby/moby/api/pkg/progress"
"github.com/moby/moby/api/types/swarm"
"github.com/moby/moby/client/pkg/progress"
"gotest.tools/v3/assert"
is "gotest.tools/v3/assert/cmp"
)