10 lines
212 B
Python
10 lines
212 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
from flask_bcrypt import Bcrypt
|
|
from flask_jwt_extended import JWTManager
|
|
from flask_cors import CORS
|
|
|
|
db = SQLAlchemy()
|
|
bcrypt = Bcrypt()
|
|
jwt = JWTManager()
|
|
cors = CORS()
|