8 lines
122 B
Python
8 lines
122 B
Python
|
from flask_sqlalchemy import SQLAlchemy
|
||
|
from flask_marshmallow import Marshmallow
|
||
|
|
||
|
|
||
|
ma = Marshmallow()
|
||
|
|
||
|
db = SQLAlchemy()
|