(v any)
| 271 | } |
| 272 | |
| 273 | func quoteString(v any) string { |
| 274 | switch v.(type) { |
| 275 | case string: |
| 276 | return fmt.Sprintf("%q", v) |
| 277 | } |
| 278 | return fmt.Sprint(v) |
| 279 | } |
| 280 | |
| 281 | // show a single backend |
| 282 | func showBackend(name string) { |
no outgoing calls
no test coverage detected
searching dependent graphs…