(s *githubv4.String)
| 143 | } |
| 144 | |
| 145 | func derefString(s *githubv4.String) string { |
| 146 | if s == nil { |
| 147 | return "" |
| 148 | } |
| 149 | return string(*s) |
| 150 | } |
| 151 | |
| 152 | // ProjectsList returns the tool and handler for listing GitHub Projects resources. |
| 153 | func ProjectsList(t translations.TranslationHelperFunc) inventory.ServerTool { |
no outgoing calls
no test coverage detected