Using hyphens or underscores (- or _) for folder paths in Go - I wasn't sure what was best. I know that in Python using "-" can cause problems when importing things or something (its been a while but I remember having issues.
In go you can alias things if it includes hyphens and replaces it with an underscore which is pretty interesting.
Presumably using a hyphen is the recommended method since there seems to be workarounds?
Thanks