Add ijeet image

This commit is contained in:
Ethan Marshall 2024-01-23 00:08:24 +00:00
parent 91415af5c3
commit 8e2d33a73f
Signed by: ejv2
GPG key ID: EC2FAEF4DB8968D8
2 changed files with 4 additions and 0 deletions

BIN
ijeet.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

View file

@ -86,6 +86,10 @@ func main() {
logRequest(200, r)
http.ServeFile(w, r, "index.js")
})
http.HandleFunc("/ijeet.jpg", func(w http.ResponseWriter, r *http.Request) {
logRequest(200, r)
http.ServeFile(w, r, "ijeet.jpg")
})
if err := http.ListenAndServe(*listenAddr, nil); err != nil {
log.Fatalln(err)