mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 07:07:48 +01:00
8 lines
201 B
Python
8 lines
201 B
Python
from quart import Blueprint
|
|
from lnbits.db import Database
|
|
|
|
db = Database("ext_example")
|
|
|
|
ngrok_ext: Blueprint = Blueprint("ngrok", __name__, template_folder="templates")
|
|
|
|
from .views import * # noqa
|