(ctx context.Context, projectName string, options api.ExportOptions)
| 30 | ) |
| 31 | |
| 32 | func (s *composeService) Export(ctx context.Context, projectName string, options api.ExportOptions) error { |
| 33 | return Run(ctx, func(ctx context.Context) error { |
| 34 | return s.export(ctx, projectName, options) |
| 35 | }, "export", s.events) |
| 36 | } |
| 37 | |
| 38 | func (s *composeService) export(ctx context.Context, projectName string, options api.ExportOptions) error { |
| 39 | projectName = strings.ToLower(projectName) |