| 3 | import "context" |
| 4 | |
| 5 | type BuildReportOptions struct { |
| 6 | Variant *VariantOverride |
| 7 | BaselinePlugins []BenchmarkPlugin |
| 8 | BaselineVariant *VariantOverride |
| 9 | BaselineProfile *string |
| 10 | Tiers []string |
| 11 | } |
| 12 | |
| 13 | func BuildBenchmarkReport(ctx context.Context, plugins []BenchmarkPlugin, options BuildReportOptions) (BenchmarkReport, error) { |
| 14 | core := BenchmarkCore{} |
nothing calls this directly
no outgoing calls
no test coverage detected