Easily get cache and config folders for your app according to each OS spec
Usage
import "github.com/caarlos0/gohome"
const appName = "my-app"
func main() {
config := gohome.Config(appName) // gives you the right config folder for the current OS
cache := gohome.Cache(appName) // gives you the right cache folder for the current OS
// ...
}