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
12 lines
293 B
Go
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)
|
|
}
|