Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As the project matures, main.go is getting a bit large to the point where there are non trivial parts of code which can be grouped together.
What I've done in this change is move the code for the different types of sources into their own file.
While this is the only change I've done, I also think that maybe there could be:
type
definitions that are in main.gomain.go
, ie everything besides the few constants and variables + theInit()
andmain()
functions.Just a thought. While these are stylistic changes in my opinion, I still think that
main.go
could benefit from improved organization.