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

14 lines
270 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(
2021-04-09 00:41:19 +01:00
"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