(ctx context.Context, opts *DatabaseReportOptions)
| 143 | } |
| 144 | |
| 145 | func (defaultChecker) Database(ctx context.Context, opts *DatabaseReportOptions) healthsdk.DatabaseReport { |
| 146 | var report DatabaseReport |
| 147 | report.Run(ctx, opts) |
| 148 | return healthsdk.DatabaseReport(report) |
| 149 | } |
| 150 | |
| 151 | func (defaultChecker) WorkspaceProxy(ctx context.Context, opts *WorkspaceProxyReportOptions) healthsdk.WorkspaceProxyReport { |
| 152 | var report WorkspaceProxyReport |
nothing calls this directly
no test coverage detected