14 lines
173 B
Go
14 lines
173 B
Go
package ui
|
|
|
|
import (
|
|
"embed"
|
|
"net/http"
|
|
)
|
|
|
|
//go:embed index.html cron.html
|
|
var content embed.FS
|
|
|
|
func Handler() http.Handler {
|
|
return http.FileServer(http.FS(content))
|
|
}
|