I've got two applications (app1 and app2) in my django project.
I'm curious if there is a way to import things between applications.
baseProject
--app1
----models.py
----etc..
--app2
----models.py
----etc..
I'd like to be able, while in app2, to import something from the models section of app1. Is there an intended method to do this or am I planning bad architecture.