chore(ods): added logging of search results and updated code comments
This commit is contained in:
parent
da203d45ec
commit
d023b41fa8
1 changed files with 2 additions and 2 deletions
4
main.go
4
main.go
|
@ -12,7 +12,7 @@ import (
|
||||||
"unicode"
|
"unicode"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Variables to customise the search behaviour
|
// Variables to customise the search
|
||||||
const (
|
const (
|
||||||
listenStr = "0.0.0.0:8090"
|
listenStr = "0.0.0.0:8090"
|
||||||
)
|
)
|
||||||
|
@ -63,12 +63,12 @@ func postIndex() http.Handler {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
slog.Info("post", "word", query, "invalid", data.Invalid)
|
||||||
w.Header().Set("Cache-Control", "no-store, no-cache")
|
w.Header().Set("Cache-Control", "no-store, no-cache")
|
||||||
indexTemplate.ExecuteTemplate(w, "index.html", data)
|
indexTemplate.ExecuteTemplate(w, "index.html", data)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// The main function
|
|
||||||
func main() {
|
func main() {
|
||||||
http.Handle("GET /static/", http.FileServer(http.FS(static)))
|
http.Handle("GET /static/", http.FileServer(http.FS(static)))
|
||||||
http.Handle("GET /", getIndex())
|
http.Handle("GET /", getIndex())
|
||||||
|
|
Loading…
Add table
Reference in a new issue