Hey everyone! I currently have this project structure:
.
├── cmd
│ └── importer
│ └── import.go
├── go.mod
├── go.sum
├── main.go
The question is: when I run go build, how can I run the import.go file instead of my main.go file in the root dir (and vice versa). I guess the main point is, how to select which file will be executed