Browse Source

Create __init__.py

fee_issues
Arc 5 years ago
committed by GitHub
parent
commit
44c6dc0c01
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      lnbits/extensions/example/__init__.py

8
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
Loading…
Cancel
Save