(ctx context.Context, opts *AccessURLReportOptions)
| 131 | } |
| 132 | |
| 133 | func (defaultChecker) AccessURL(ctx context.Context, opts *AccessURLReportOptions) healthsdk.AccessURLReport { |
| 134 | var report AccessURLReport |
| 135 | report.Run(ctx, opts) |
| 136 | return healthsdk.AccessURLReport(report) |
| 137 | } |
| 138 | |
| 139 | func (defaultChecker) Websocket(ctx context.Context, opts *WebsocketReportOptions) healthsdk.WebsocketReport { |
| 140 | var report WebsocketReport |
nothing calls this directly
no test coverage detected