Compare commits

...

1 Commits

Author SHA1 Message Date
33fe4b2b80 added log statement to APIHandler
All checks were successful
/ push_to_registry (push) Successful in 51s
2026-02-02 22:06:42 +01:00

View File

@@ -42,6 +42,7 @@ func generatePassword() string {
}
func passwordHandler(w http.ResponseWriter, r *http.Request) {
log.Printf("APIHandler called from %s\n", r.RemoteAddr)
password := generatePassword()
fmt.Fprint(w, password)
}