This repository has been archived on 2022-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Yotter/yotter.py

8 lines
165 B
Python
Raw Permalink Normal View History

2020-08-30 16:10:20 +05:30
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}