6 lines
120 B
Python
6 lines
120 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
from flask_jwt_extended import JWTManager
|
|
|
|
db = SQLAlchemy()
|
|
jwt = JWTManager()
|