MCPcopy Index your code
hub / github.com/SignTools/SignTools / getAndHead

Function getAndHead

main.go:179–182  ·  view source on GitHub ↗
(e *echo.Echo, path string, getHandler func(c echo.Context) error, headHandler func(c echo.Context) error, m ...echo.MiddlewareFunc)

Source from the content-addressed store, hash-verified

177}
178
179func getAndHead(e *echo.Echo, path string, getHandler func(c echo.Context) error, headHandler func(c echo.Context) error, m ...echo.MiddlewareFunc) {
180 e.GET(path, getHandler, m...)
181 e.HEAD(path, headHandler, m...)
182}
183
184func renderInstall(c echo.Context, app storage.App) error {
185 usingManifestProxy := false

Callers 1

serveFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected