Started streamer copilot extension

This commit is contained in:
Ben Arc
2021-04-12 20:31:39 +01:00
parent 237a6b369f
commit f29a852e9d
11 changed files with 1254 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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