Add missing implicit return at end of handler

This commit is contained in:
Paul Brinkmeier 2024-08-12 12:48:08 +02:00
parent 586a77dd2f
commit 00abbcbb90

View File

@ -192,6 +192,7 @@ func main() {
)
}
}
return
})
log.Fatal(http.ListenAndServe(":8000", nil))
}