A simple Go project has just a few files: a go.mod file and one or more .go files. All .go files in the same directory belong to the same package.
As your project grows, you'll create subdirectories for additional packages. For now, keep it simple. One directory, one package, a few files. Complexity can come later when you need it.