-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
Dependency cycles are hard to deal with | ||
# Utility Functions | ||
|
||
Any code that doesn't import anything in packages can go into into the util package, | ||
which should only be imported | ||
Dependency cycles are not allowed in go. Therefore, sometimes as individual packages become very large we arrive at a cycle of dependencies. | ||
|
||
|
||
Any code that doesn't import anything in packages can go into into this util package, | ||
which should not import any other packages. |