9 lines
208 B
Python
9 lines
208 B
Python
import click
|
|
from flask import current_app, g
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
class Base(DeclarativeBase):
|
|
pass
|
|
|
|
db = SQLAlchemy(model_class=Base) |