Recommendations for splitting a large API into multiple handlers? #1181
johnrutherford
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If you have a large API, implementing all endpoints in single large
Handler
will be difficult to maintain. The GitHub API is an extreme example.Typically you would want to split up your implementation by version, resource, etc. How can you do this with
ogen
? It looks like contiamo/openapi-generator-go usesx-handler-group
to group operations into separate handlers.Beta Was this translation helpful? Give feedback.
All reactions