8 lines
165 B
Python
8 lines
165 B
Python
|
from app import app, db
|
||
|
from app.models import User, Post
|
||
|
|
||
|
|
||
|
@app.shell_context_processor
|
||
|
def make_shell_context():
|
||
|
return {'db': db, 'User': User, 'Post': Post}
|