5 lines
119 B
Python
5 lines
119 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
from flask_marshmallow import Marshmallow
|
|
|
|
db = SQLAlchemy()
|
|
ma = Marshmallow() |