Relative Content

Tag Archive for gorecursiongoroutine

Recursively make http requests using goroutines in golang

Basically, i have to make an http request to get say, ticket details. If a ticket has children(ticket ids present), then i need to make a call for each id to get their details and so on. whats the best way to achieve this efficiently? here’s what i have so far(suggestions on how to complete this, Please):