Closed Inozuma closed 5 years ago
Merging #30 into master will not change coverage. The diff coverage is
100%
.
@@ Coverage Diff @@
## master #30 +/- ##
======================================
Coverage 96.7% 96.7%
======================================
Files 7 7
Lines 942 942
======================================
Hits 911 911
Misses 18 18
Partials 13 13
Impacted Files | Coverage Δ | |
---|---|---|
fizz.go | 98.8% <100%> (ø) |
:arrow_up: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update bf1cff4...81245c5. Read the comment docs.
There is currently an issue when using a router group and a tonic handler together. The path is consolidated for the openapi spec operation (but only in case there is a tonic handler), but overrides the path which is later used to declare the route on the underlying gin router.
For example:
This example will declare a route in gin as
/test/test
instead of just/test
.