()
| 28 | } |
| 29 | |
| 30 | func main() { |
| 31 | var topic string |
| 32 | fmt.Print("Enter GitHub topic: ") |
| 33 | fmt.Scanf("%s", &topic) |
| 34 | |
| 35 | topics, err := fetchTopics(topic) |
| 36 | if err != nil { |
| 37 | log.Fatalf("Error: %v", err) |
| 38 | } |
| 39 | |
| 40 | for _, topic := range topics.Topics { |
| 41 | fmt.Println(*topic.Name) |
| 42 | } |
| 43 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…