I realized that when building a web server, all of the routes and functions that handle them are in the main.go
file.
As the application grows, I imagine it could be hard to keep track of everything.
Is there a convention regarding "storing" the routes and handler functions in a file other than main.go
?