Beispiel #1
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_tipjar")

tipjar_ext: Blueprint = Blueprint("tipjar",
                                  __name__,
                                  static_folder="static",
                                  template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #2
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_hivemind")

hivemind_ext: Blueprint = Blueprint(
    "hivemind", __name__, static_folder="static", template_folder="templates"
)


from .views import *  # noqa
Beispiel #3
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_satspay")

satspay_ext: Blueprint = Blueprint("satspay",
                                   __name__,
                                   static_folder="static",
                                   template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #4
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_withdraw")


withdraw_ext: Blueprint = Blueprint("withdraw", __name__, static_folder="static", template_folder="templates")


from .views_api import *  # noqa
from .views import *  # noqa
from .lnurl import *  # noqa
Beispiel #5
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_amilk")

amilk_ext: Blueprint = Blueprint("amilk",
                                 __name__,
                                 static_folder="static",
                                 template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #6
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_lnurlpos")

lnurlpos_ext: Blueprint = Blueprint(
    "lnurlpos", __name__, static_folder="static", template_folder="templates"
)

from .views_api import *  # noqa
from .views import *  # noqa
from .lnurl import *  # noqa

from lnbits.tasks import record_async
Beispiel #7
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_subdomains")

subdomains_ext: Blueprint = Blueprint("subdomains",
                                      __name__,
                                      static_folder="static",
                                      template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa

from .tasks import register_listeners
from lnbits.tasks import record_async

subdomains_ext.record(record_async(register_listeners))
Beispiel #8
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_ngrok")

ngrok_ext: Blueprint = Blueprint("ngrok", __name__, template_folder="templates")

from .views import *  # noqa
Beispiel #9
0
from quart import Blueprint

from lnbits.db import Database

db = Database("ext_splitpayments")

splitpayments_ext: Blueprint = Blueprint("splitpayments",
                                         __name__,
                                         static_folder="static",
                                         template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
from .tasks import register_listeners

from lnbits.tasks import record_async

splitpayments_ext.record(record_async(register_listeners))
Beispiel #10
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_usermanager")

usermanager_ext: Blueprint = Blueprint("usermanager",
                                       __name__,
                                       static_folder="static",
                                       template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #11
0
from quart import Blueprint

from lnbits.db import Database

db = Database("ext_livestream")

livestream_ext: Blueprint = Blueprint(
    "livestream", __name__, static_folder="static", template_folder="templates"
)


from .views_api import *  # noqa
from .views import *  # noqa
from .lnurl import *  # noqa
from .tasks import register_listeners

from lnbits.tasks import record_async

livestream_ext.record(record_async(register_listeners))
Beispiel #12
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_events")

events_ext: Blueprint = Blueprint("events",
                                  __name__,
                                  static_folder="static",
                                  template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #13
0
from quart import Blueprint

from lnbits.db import Database

db = Database("ext_offlineshop")

offlineshop_ext: Blueprint = Blueprint("offlineshop",
                                       __name__,
                                       static_folder="static",
                                       template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
from .lnurl import *  # noqa
Beispiel #14
0
from quart import Blueprint

from lnbits.db import Database

db = Database("ext_jukebox")

jukebox_ext: Blueprint = Blueprint(
    "jukebox", __name__, static_folder="static", template_folder="templates"
)

from .views_api import *  # noqa
from .views import *  # noqa
from .tasks import register_listeners

from lnbits.tasks import record_async

jukebox_ext.record(record_async(register_listeners))
Beispiel #15
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_example")

example_ext: Blueprint = Blueprint("example",
                                   __name__,
                                   static_folder="static",
                                   template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #16
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_lndhub")

lndhub_ext: Blueprint = Blueprint("lndhub",
                                  __name__,
                                  static_folder="static",
                                  template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #17
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_copilot")

copilot_ext: Blueprint = Blueprint("copilot",
                                   __name__,
                                   static_folder="static",
                                   template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
from .lnurl import *  # noqa
from .tasks import register_listeners

from lnbits.tasks import record_async

copilot_ext.record(record_async(register_listeners))
Beispiel #18
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_paywall")

paywall_ext: Blueprint = Blueprint("paywall", __name__, static_folder="static", template_folder="templates")


from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #19
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_lnurlp")

lnurlp_ext: Blueprint = Blueprint("lnurlp",
                                  __name__,
                                  static_folder="static",
                                  template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
from .lnurl import *  # noqa
from .tasks import register_listeners

from lnbits.tasks import record_async

lnurlp_ext.record(record_async(register_listeners))
Beispiel #20
0
from quart import Blueprint
from lnbits.db import Database

db = Database("database")

core_app: Blueprint = Blueprint(
    "core",
    __name__,
    template_folder="templates",
    static_folder="static",
    static_url_path="/core/static",
)

from .views.api import *  # noqa
from .views.generic import *  # noqa
from .views.public_api import *  # noqa
from .tasks import register_listeners

from lnbits.tasks import record_async

core_app.record(record_async(register_listeners))
Beispiel #21
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_tpos")

tpos_ext: Blueprint = Blueprint(
    "tpos", __name__, static_folder="static", template_folder="templates"
)


from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #22
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_lnticket")

lnticket_ext: Blueprint = Blueprint("lnticket",
                                    __name__,
                                    static_folder="static",
                                    template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #23
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_satsdice")


satsdice_ext: Blueprint = Blueprint(
    "satsdice", __name__, static_folder="static", template_folder="templates"
)


from .views_api import *  # noqa
from .views import *  # noqa
from .lnurl import *  # noqa
Beispiel #24
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_watchonly")

watchonly_ext: Blueprint = Blueprint("watchonly",
                                     __name__,
                                     static_folder="static",
                                     template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #25
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_bleskomat")

bleskomat_ext: Blueprint = Blueprint("bleskomat",
                                     __name__,
                                     static_folder="static",
                                     template_folder="templates")

from .lnurl_api import *  # noqa
from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #26
0
from quart import Blueprint
from lnbits.db import Database

db = Database("ext_captcha")

captcha_ext: Blueprint = Blueprint("captcha",
                                   __name__,
                                   static_folder="static",
                                   template_folder="templates")

from .views_api import *  # noqa
from .views import *  # noqa
Beispiel #27
0
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