8 lines
155 B
Python
8 lines
155 B
Python
|
|
from flask_sqlalchemy import SQLAlchemy
|
||
|
|
from flask_migrate import Migrate
|
||
|
|
from flask_cors import CORS
|
||
|
|
|
||
|
|
db = SQLAlchemy()
|
||
|
|
migrate = Migrate()
|
||
|
|
cors = CORS()
|