So I have decided to use django with ninja for REST APIs but since there is no separate router file, I am wondering if ther is a way to bind all my api files together?
I have a view (CRUD ) for one model call accounts, there is another for customers and another for bills. There would be also requirements for keeping common functions together, but that is easily solved. My issue is how I keep api_accounts.py, api_bills.py etc in a single apis package and then be able to use all the routs?
What could be the structure of the apis package?
Then the related issue is how I import these urls in my mai project?