(c echo.Context, app storage.App)
| 461 | } |
| 462 | |
| 463 | func getManifest(c echo.Context, app storage.App) error { |
| 464 | manifestBytes, err := makeManifest(getBaseUrl(c), app) |
| 465 | if err != nil { |
| 466 | return err |
| 467 | } |
| 468 | return c.Blob(200, "text/plain", manifestBytes) |
| 469 | } |
| 470 | |
| 471 | func getBaseUrl(c echo.Context) string { |
| 472 | var host = "" |
nothing calls this directly
no test coverage detected