9 lines
130 B
Go
9 lines
130 B
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/a-h/templ"
|
|
)
|
|
|
|
type fetcher func(r *http.Request) (templ.Component, int, error)
|