In a custom module, if you want to define model FOOBAR you just write the code in foobar.py and include
from . import foobar
in __init__.py
So far, so good.
I want to move my foobar.py to folder models. What shoud be included in __init__.py to reflect the fact that foobar.py is in "models" folder?