(name string)
| 87 | } |
| 88 | |
| 89 | func LookupDescription(name string) *descriptionInfo { |
| 90 | if result, found := descriptions[name]; found { |
| 91 | return result |
| 92 | } |
| 93 | return nil |
| 94 | } |
| 95 | |
| 96 | type descriptionInfo struct { |
| 97 | Summary string |
no outgoing calls
no test coverage detected