django-kevin
django-kevin copied to clipboard
importing package from another app
I have questions. We put all apps in apps folder e.g.
apps
myapp
userapp
sometaskapp
When we want to import models of myapp in userapp, we have to do it like from apps.myapp.models import MyModel
I am wondering if there's way to get rid of apps without adding path upto apps directory in system path e.g. from myapp.models import MyModel
Thanks