I use https://github.com/cloudflare/golz4 which is a go interface to C code. So the src/
directory is mandatory in the dep tree.
Most dependency management ignore those directories (without .go
files) but leave an option to force it.
e.g: go dep has
# [prune]
# unused-packages = true
Vgo/Go1.11 mod ignore those directories but is there an option to force import them ?
Thanks