플라스크-SQLAChemy 가져오기/컨텍스트 문제 플라스크 앱을 다음과 같이 구성하고 싶습니다. ./site.py ./apps/members/__init__.py ./apps/members/models.py apps.members플라스크 청사진입니다. 이제 모델 클래스를 만들려면 앱을 보유해야 합니다. 다음과 같은 것이 있습니다. # apps.members.models from flask import current_app from flaskext.sqlalchemy import SQLAlchemy db = SQLAlchemy(current_app) class Member(db.Model): # fields here pass 하지만 그 모델을 Blueprint 앱으로 가져오려고 하면 겁이 납니다.Runti..