
Story: 2008529 Task: 41688 Signed-off-by: Bin Yang <bin.yang@windriver.com> Change-Id: Ib276520605cc624a9976f804a1721ba2c5909403
18 lines
465 B
Python
18 lines
465 B
Python
from pecan import conf # noqa
|
|
|
|
def init_model():
|
|
"""
|
|
This is a stub method which is called at application startup time.
|
|
|
|
If you need to bind to a parsed database configuration, set up tables or
|
|
ORM classes, or perform any database initialization, this is the
|
|
recommended place to do it.
|
|
|
|
For more information working with databases, and some common recipes,
|
|
see https://pecan.readthedocs.io/en/latest/databases.html
|
|
"""
|
|
|
|
pass
|
|
|
|
|