lnbits-legend/lnbits/extensions/satspay/__init__.py

13 lines
269 B
Python
Raw Normal View History

2021-04-04 18:20:52 +01:00
from quart import Blueprint
from lnbits.db import Database
db = Database("ext_satspay")
2021-04-08 01:04:55 +01:00
satspay_ext: Blueprint = Blueprint(
"satspay", __name__, static_folder="static", template_folder="templates")
2021-04-04 18:20:52 +01:00
from .views_api import * # noqa
from .views import * # noqa