4 lines
99 B
Python
4 lines
99 B
Python
from flask_cors import CORS
|
|
cors = CORS()
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
db = SQLAlchemy() |