Importing something as simple as these 2 dependencies:
Results in 916 files being imported to your codebase (vendor directory).
find . -name '*.go' | wc -l
916
If you remove test files from that count, it still a substantial 648 files.
find . -name '*.go' | grep -v '_test.go' | wc -l
648