17 lines
297 B
Go
17 lines
297 B
Go
package ui
|
|
|
|
import (
|
|
_ "embed"
|
|
"net/http"
|
|
)
|
|
|
|
//go:embed cron.html
|
|
var cronPage string
|
|
|
|
func CronHandler() http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
|
|
w.Header().Set("Content-Type", "text/html; charset=utf-8")
|
|
_, _ = w.Write([]byte(cronPage))
|
|
})
|
|
}
|