(ctx context.Context, cfg *config.Config, pluginRuntime PluginRuntime)
| 106 | } |
| 107 | |
| 108 | func Sync(ctx context.Context, cfg *config.Config, pluginRuntime PluginRuntime) error { |
| 109 | _, errSync := SyncPlatformWithReport(ctx, cfg, pluginRuntime, CurrentPlatform()) |
| 110 | return errSync |
| 111 | } |
| 112 | |
| 113 | func SyncPlatform(ctx context.Context, cfg *config.Config, pluginRuntime PluginRuntime, platform Platform) error { |
| 114 | _, errSync := SyncPlatformWithReport(ctx, cfg, pluginRuntime, platform) |
nothing calls this directly
no test coverage detected