6 lines
91 B
Python
6 lines
91 B
Python
"""Database initialisation."""
|
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
db = SQLAlchemy()
|