lnbits-legend/lnbits/extensions/TwitchAlerts/__init__.py
2021-06-20 06:34:01 +02:00

12 lines
284 B
Python

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