We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any server implementation should have a code generator that creates an idiomatic client for it where the end user has only two exported APIs:
type Service interface { ... } // contains all API calls. func NewService(client *http.Client, url string) Service
The text was updated successfully, but these errors were encountered:
I'm a bit more inclined to go the document-driven approach. Create a API spec and then create servers and clients based on the contract.
Also, if we do build a tool that enables this, I think we may want it in it's own repo and have the generation tied to a specific version. Thoughts?
Sorry, something went wrong.
No branches or pull requests
Any server implementation should have a code generator that creates an idiomatic client for it where the end user has only two exported APIs:
The text was updated successfully, but these errors were encountered: