-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Description
Issue Description
Consider following example -
package main
import (
"github.com/labstack/echo"
)
func main() {
e := echo.New()
e.Get("/:repo/:image/manifests/:reference", func(e *echo.Context) error {
return nil
})
e.Run(":8080")
}
now i want the image field to contains slashes and be able to query 3 different path params, which are - repo, image and reference and only image can contain slashes.
How should i write my route?
Checklist
- Dependencies installed
- No typos
- Searched existing issues and docs
Expected behaviour
Actual behaviour
Steps to reproduce
Working code to debug
package main
func main() {
}
Version/commit
Metadata
Metadata
Assignees
Labels
No labels