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