7 lines
121 B
Python
7 lines
121 B
Python
from flask_marshmallow import Marshmallow
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
ma = Marshmallow()
|
|
|
|
db = SQLAlchemy()
|