13 lines
191 B
Go
13 lines
191 B
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/a-h/templ"
|
|
"git.schreifuchs.ch/schreifuchs/schreifuchs.ch/web/pages"
|
|
)
|
|
|
|
func Home() http.Handler {
|
|
return templ.Handler(pages.Index())
|
|
}
|