(c echo.Context)
| 228 | } |
| 229 | |
| 230 | func (srv *Server) WebHealth(c echo.Context) error { |
| 231 | resp := map[string]interface{}{ |
| 232 | "status": "ok", |
| 233 | } |
| 234 | return c.JSON(http.StatusOK, resp) |
| 235 | } |
| 236 | |
| 237 | func (srv *Server) WebOpenapiYaml(c echo.Context) error { |
| 238 | return c.Blob(http.StatusOK, "text/yaml", apiOpenapiYaml) |
nothing calls this directly
no outgoing calls
no test coverage detected