feat: add support for Echo v5 (and example)#72
Open
maps11 wants to merge 1 commit intodoordash-oss:mainfrom
Open
feat: add support for Echo v5 (and example)#72maps11 wants to merge 1 commit intodoordash-oss:mainfrom
maps11 wants to merge 1 commit intodoordash-oss:mainfrom
Conversation
- Add HandlerKindEchoV5 constant and IsValid() support in configuration.go - Add echo-v5 handler, middleware, and server templates - Add examples/server/echo-v5 standalone example with README - Add examples/server/test/echo-v5 test case wired into server_test.go - Add github.com/labstack/echo/v5 to examples/go.mod - Add echo-v5 to configuration-schema.json handler kind enum - Add echo-v5 router init test in integration_test.go
888df4d to
5471282
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds Echo v5 as a supported server framework target (
kind: echo-v5).Changes
pkg/codegen/configuration.go— newHandlerKindEchoV5constant, added toIsValid()pkg/codegen/templates/handler/echo-v5/— handler, middleware, and server templatesexamples/server/echo-v5/— standalone runnable example with READMEexamples/server/test/echo-v5/— test case wired into the shared server test suiteconfiguration-schema.json—echo-v5added to thekindenumintegration_test.go— router init test for echo-v5Testing
All server tests pass including 13 new echo-v5 subtests.