2020-04-05 12:20:03 +02:00
|
|
|
from flask import Blueprint
|
|
|
|
|
|
|
|
|
2020-04-25 23:55:07 +02:00
|
|
|
paywall_ext: Blueprint = Blueprint("paywall", __name__, static_folder="static", template_folder="templates")
|
2020-04-05 12:20:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
from .views_api import * # noqa
|
|
|
|
from .views import * # noqa
|