Comment on
Is there a repository of best practices when it comes to Go? (project/file structure, decoupling)
Reply in thread
Some aspects of that repo are actually language features, such as the pkg and internal directories.
Comment on
Is there a repository of best practices when it comes to Go? (project/file structure, decoupling)
Reply in thread
Some aspects of that repo are actually language features, such as the pkg and internal directories.
Comment on
Is there a repository of best practices when it comes to Go? (project/file structure, decoupling)
Reply in thread
The language feature is the internal/ directory, and it's function of restricting dependencies from external programs.