netclock/worldclock/__init__.py
Armin Friedl 19c9e720e7
All checks were successful
continuous-integration/drone/push Build is passing
Prepare worldclock, no trailing / for blueprint roots
If specifying a blueprint with route "/", this will result
in flask redirecting to a request to `http://example.com/blueprint`
to `http://example.com/blueprint/`. This we don't want.
2020-09-14 21:13:25 +02:00

5 lines
136 B
Python

from flask import Blueprint
app = Blueprint('worldclock', __name__, template_folder='templates')
from . import views
from . import api