Armin Friedl
19c9e720e7
All checks were successful
continuous-integration/drone/push Build is passing
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.
5 lines
136 B
Python
5 lines
136 B
Python
from flask import Blueprint
|
|
|
|
app = Blueprint('worldclock', __name__, template_folder='templates')
|
|
from . import views
|
|
from . import api
|