From bb67a78e804609621510ede2b8b3f10eaad0e751 Mon Sep 17 00:00:00 2001 From: Praful Gupta Date: Sat, 22 Jul 2023 12:13:16 +0200 Subject: [PATCH] Update Config comment in Service interface Signed-off-by: Praful Gupta --- pkg/api/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/api.go b/pkg/api/api.go index 09f2858d2fc..622141096b1 100644 --- a/pkg/api/api.go +++ b/pkg/api/api.go @@ -52,7 +52,7 @@ type Service interface { Ps(ctx context.Context, projectName string, options PsOptions) ([]ContainerSummary, error) // List executes the equivalent to a `docker stack ls` List(ctx context.Context, options ListOptions) ([]Stack, error) - // Convert translate compose model into backend's native format + // Config executes the equivalent to a `compose Config` Config(ctx context.Context, project *types.Project, options ConfigOptions) ([]byte, error) // Kill executes the equivalent to a `compose kill` Kill(ctx context.Context, projectName string, options KillOptions) error