You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tooling like update-urls and metadata could be simpler if API calls were made from methods on a *Service receiver. I think it would also make more sense for humans using go-github.
Currently there are handful of Client methods such as that would logically belong on different receivers. I propose we create the appropriate Service types for these.
The changes would be would be:
Client.Markdown -> MarkdownService.Markdown (maybe rename it to RenderMarkdown while we are at it)
Tooling like update-urls and metadata could be simpler if API calls were made from methods on a
*Service
receiver. I think it would also make more sense for humans using go-github.Currently there are handful of Client methods such as that would logically belong on different receivers. I propose we create the appropriate Service types for these.
The changes would be would be:
The original methods would be updated to call their new equivalent and marked deprecated.
The text was updated successfully, but these errors were encountered: