(ctx context.Context, cfg *config.Config, pluginRuntime PluginRuntime, platform Platform)
| 111 | } |
| 112 | |
| 113 | func SyncPlatform(ctx context.Context, cfg *config.Config, pluginRuntime PluginRuntime, platform Platform) error { |
| 114 | _, errSync := SyncPlatformWithReport(ctx, cfg, pluginRuntime, platform) |
| 115 | return errSync |
| 116 | } |
| 117 | |
| 118 | func SyncWithReport(ctx context.Context, cfg *config.Config, pluginRuntime PluginRuntime) (SyncReport, error) { |
| 119 | return SyncPlatformWithReport(ctx, cfg, pluginRuntime, CurrentPlatform()) |