(value interface{})
| 1459 | } |
| 1460 | |
| 1461 | func extractStringValue(value interface{}) string { |
| 1462 | text, _ := value.(string) |
| 1463 | return text |
| 1464 | } |
| 1465 | |
| 1466 | func extractRequireMentionValue(value interface{}, defaultValue string) string { |
| 1467 | switch typed := value.(type) { |
no outgoing calls
no test coverage detected