How can I share a URL namespace between two apps?
E.g. I have /api/, and I have two apps: app1 and app2.
Let's say I want /api/app1topic/abc/, I want that to be api:app1topic:abc
The issue I think i'm having is that I have it structured
- app2/app2topicABC/api/urls.py
- app2/app2topicXYZ/api/urls.py
rather than a central app2/api/urls.py
But it should definitely still be possible, cause a namespace should have nothing to do with the file structure, at least I thought.