(value T, err error)
| 565 | } |
| 566 | |
| 567 | func must[T any](value T, err error) T { |
| 568 | if err != nil { |
| 569 | panic(err) |
| 570 | } |
| 571 | return value |
| 572 | } |
| 573 | |
| 574 | func TestAIGatewayCompatibilityAliases(t *testing.T) { |
| 575 | t.Parallel() |
no outgoing calls
no test coverage detected