From cb2fdd8d337341b1207c5358014007700cc2c826 Mon Sep 17 00:00:00 2001 From: jeff Date: Mon, 26 Sep 2022 17:47:31 +0000 Subject: [PATCH] Update 'project_structure.md' --- project_structure.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/project_structure.md b/project_structure.md index d1642e2..b9befba 100644 --- a/project_structure.md +++ b/project_structure.md @@ -45,3 +45,6 @@ Modules, packages, files, funcs, and structs are all encapsulation tools. Use t ### Adding Complexity Should Have a Rationale Adding packages adds complexity to your project. The onus is on the person adding the complexity to rationalize it. If there is no rationale, it should probably be removed. + +### Reviewing Go Code +[Code Review Comments](https://github.com/golang/go/wiki/CodeReviewComments) has a lot of information on what to look for and tolerate in code.