8 lines
162 B
Python
8 lines
162 B
Python
|
|
from flask_cors import CORS
|
||
|
|
from flask_sqlalchemy import SQLAlchemy
|
||
|
|
from flask_jwt_extended import JWTManager
|
||
|
|
|
||
|
|
cors = CORS()
|
||
|
|
db = SQLAlchemy()
|
||
|
|
jwt = JWTManager()
|