feat: offer to show all results on one page (if < 10000) Implements: https://todo.sr.ht/~alanpearce/searchix/5
1 file changed, 2 insertions(+), 0 deletions(-)
changed files
M internal/config/config.go → internal/config/config.go
@@ -14,6 +14,8 @@ var Version string var DevMode bool +const MaxResultsShowAll = 10_000 + type URL struct { *url.URL }