Rename Flask template app to pbpl

Signed-off-by: Arija A. <ari@ari.lt>
This commit is contained in:
2025-10-23 20:38:04 +03:00
parent caf4ac7c06
commit 56aee59790
15 changed files with 11 additions and 352 deletions

16
src/pbpl/db.py Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Flask Database"""
from typing import Tuple
from flask_migrate import Migrate # type: ignore
from flask_sqlalchemy import SQLAlchemy # type: ignore
__all__: Tuple[str, str] = (
"db",
"migrate",
)
db: SQLAlchemy = SQLAlchemy()
migrate: Migrate = Migrate()