internal/components/data.go (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | package components
import (
"alin.ovh/searchix/frontend"
"alin.ovh/searchix/internal/config"
search "alin.ovh/searchix/internal/index"
)
type TemplateData struct {
Sources []*config.Source
Source *config.Source
Query string
ExtraHeadHTML string
Code int
Message string
Assets *frontend.AssetCollection
}
type ResultData struct {
TemplateData
Query string
Results *search.Result
Prev string
Next string
All string
}
|