Update __init__.py

This commit is contained in:
supertestnet 2021-07-03 09:10:46 -04:00 committed by GitHub
parent 24b20a5b6c
commit a9c5bb93c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,10 @@
from quart import Blueprint
from lnbits.db import Database
db = Database("ext_freetunnel")
db = Database("ext_ngrok")
freetunnel_ext: Blueprint = Blueprint(
"freetunnel", __name__, static_folder="static", template_folder="templates"
"ngrok", __name__, static_folder="static", template_folder="templates"
)