(ginCtx *gin.Context)
| 74 | } |
| 75 | |
| 76 | func IndexHtml(ginCtx *gin.Context) { |
| 77 | AddExpires(ginCtx) |
| 78 | ginCtx.Header("Cache-Control", "no-store, no-cache, max-age=0, must-revalidate, proxy-revalidate") |
| 79 | ginCtx.Data(http.StatusOK, "text/html; charset=utf-8", indexHtml) |
| 80 | } |
| 81 | |
| 82 | func (f *Frontend) Api() []pm3.Api { |
| 83 | return []pm3.Api{ |
nothing calls this directly
no test coverage detected