mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-23 22:47:05 +01:00
Looking pretty fucking dope Added some extra gifs Added wallet, lnurl generation should work Damn you lnurl check https for wss added z for lnurlp zindex to the moon zindex to moon lnurl too big in ambition lnurl big copy/paste bug address attach lnurl to view please work lnurl bug lnurl bug bigger lnurl added reconect button me bug await a string
12 lines
No EOL
296 B
Python
12 lines
No EOL
296 B
Python
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 |