I'm trying to set up a basic web app and I'm struggling with some basic
routing rules. I want that the root ("/") is handled by one handler and a
directory like /static/ by the FileServer. However, when using HandleFunc
with "/" as the pattern every request will be handled by only this handler,
the FileServer will never be called.
Thanks a lot.
--