@toby3d Have you considered using a package like gin to help with the web server stuff?
I wrote a post here on my findings on other GoLang projects: https://fosstodon.org/@lil5/111380155326273056
If you want someone to look at your code you’ll need to add some readme’s and point them to a specific part of the codebase.
@lil5 No, in my six years of experience with #Go, I refuse to use web frameworks like #echo, #Gin, #gorilla, #FastHTTP and so on. They only increase the overall complexity of the project and make you struggle with non-obvious limitations.
For example, FastHTTP still doesn't know how to work with fs.FS, and gorilla/mux makes me suffer from regular router configuration problems and search specific gothas.