us-dop-api/handlers/api/constrols.go
2024-07-21 11:30:05 -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)
}