I'm interested in separating my app by module
app
controllers
views
diretivas
services
--modules
----principal
--------controllers
--------views
--------service
--------index.html
----cadastro
--------controllers
--------views
--------service
--------index.html
----financeiro
--------controllers
--------views
--------service
--------index.html
app.js
Being the first controller and views folder that would be the login and the template of my system But all the examples that I find, each module has its routes
How would only one file handle all routes of all modules?