enhancementhelp wanted
仓库指标
- Star
- (1,953 star)
- PR 合并指标
- (平均合并 5小时 49分钟) (30 天内合并 2 个 PR)
描述
There exist in the wild APIs such as this:
GET /v2/<name>/manifests/<reference>
GET /v2/<name>/tags/list
where <name> comprises one or more path segments. It would be nice to be able to do something like this:
"v2" :> CaptureSome "name" [String] :> "manifests" :> Capture "reference" String :> Get ...
"v2" :> CaptureSome "name" [String] :> "tags" :> "list" :> Get ...
to support them.