lnbits-legend/lnbits/extensions/streamalerts/__init__.py
2021-08-01 04:54:43 +02:00

11 lines
283 B
Python

from quart import Blueprint
from lnbits.db import Database
db = Database("ext_streamalerts")
streamalerts_ext: Blueprint = Blueprint(
"streamalerts", __name__, static_folder="static", template_folder="templates"
)
from .views_api import * # noqa
from .views import * # noqa