maximo tejeda eeebd4c25c
Some checks failed
dev test / test (push) Successful in 7s
dev test / vulnCheck (push) Successful in 12s
dev test / Ci-Lint (push) Successful in 10s
${{ github.actor }} executed Build Push Prod / build (push) Failing after 42s
${{ github.actor }} executed Build Push Prod / deploy (push) Has been skipped
FIX lint
2024-12-03 22:30:32 -04:00

12 lines
293 B
Go

package api
import "net/http"
func (api *API) GetHistoryPage(w http.ResponseWriter, r *http.Request) {
_ = api.templ.ExecuteTemplate(w, "hist-page", nil)
}
func (api *API) GetComparisonPage(w http.ResponseWriter, r *http.Request) {
_ = api.templ.ExecuteTemplate(w, "compare-page", nil)
}