From 44c6dc0c01d54019362981e9742003c057de006a Mon Sep 17 00:00:00 2001 From: Arc <33088785+arcbtc@users.noreply.github.com> Date: Wed, 19 Feb 2020 22:58:58 +0000 Subject: [PATCH] Create __init__.py --- lnbits/extensions/example/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lnbits/extensions/example/__init__.py diff --git a/lnbits/extensions/example/__init__.py b/lnbits/extensions/example/__init__.py new file mode 100644 index 00000000..1950e6c0 --- /dev/null +++ b/lnbits/extensions/example/__init__.py @@ -0,0 +1,8 @@ +from flask import Blueprint + + +example_ext = Blueprint("example", __name__, static_folder="static", template_folder="templates") + + +from .views_api import * # noqa +from .views import * # noqa