2020-02-19 12:35:04 +00:00
|
|
|
from flask import Blueprint
|
|
|
|
|
|
|
|
|
2020-04-26 13:28:19 +02:00
|
|
|
events_ext: Blueprint = Blueprint("events", __name__, static_folder="static", template_folder="templates")
|
2020-02-19 12:35:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
from .views_api import * # noqa
|
|
|
|
from .views import * # noqa
|