How to remove all contents of a directory using Golang?

I'm new to Go and can't seem to find a way to delete all the contents of a directory when I don't know the contents. I've tried: os.RemoveAll("/tmp/*") os.Remove("/tmp/*") but get remove *: no s...