(input any)
| 479 | } |
| 480 | |
| 481 | func derefSendMessage(input any) SendMessageInput { |
| 482 | if v, ok := input.(*SendMessageInput); ok && v != nil { |
| 483 | return *v |
| 484 | } |
| 485 | if v, ok := input.(SendMessageInput); ok { |
| 486 | return v |
| 487 | } |
| 488 | return SendMessageInput{} |
| 489 | } |
no outgoing calls
no test coverage detected