maximo tejeda 3888c47d17
Some checks failed
dev test / test (push) Failing after 8s
dev test / vulnCheck (push) Has been skipped
dev test / Ci-Lint (push) Has been skipped
Restructured workflow added
2024-12-03 22:09:27 -04:00

12 lines
285 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)
}