Splitting into x2 extensions

Splitting extension into 2, SatsPay Server, a BTCPay Server type extension, and WatchOnly
This commit is contained in:
benarc
2021-02-21 17:53:43 +00:00
parent 9724f33111
commit ecfcc167f0
11 changed files with 1380 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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