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

12 lines
283 B
Python
Raw Normal View History

2021-06-20 06:34:01 +02:00
from quart import Blueprint
from lnbits.db import Database
2021-08-01 04:54:43 +02:00
db = Database("ext_streamalerts")
2021-06-20 06:34:01 +02:00
2021-08-01 04:54:43 +02:00
streamalerts_ext: Blueprint = Blueprint(
"streamalerts", __name__, static_folder="static", template_folder="templates"
2021-07-07 10:19:16 +01:00
)
2021-06-20 06:34:01 +02:00
from .views_api import * # noqa
from .views import * # noqa