Browse Source

Update app.py

pull/2600/head
Alaa Aqeel 7 years ago committed by GitHub
parent
commit
e2f0b7153c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      flask/app.py

8
flask/app.py

@ -37,6 +37,10 @@ from .templating import DispatchingJinjaLoader, Environment, \
_default_template_ctx_processor
from .wrappers import Request, Response
# **NEW
from .models.methods import Router
# a singleton sentinel value for parameter defaults
_sentinel = object()
@ -363,6 +367,10 @@ class Flask(_PackageBoundObject):
' A relative path was given instead.'
)
# NEW
self.router = Router(self)
#: Holds the path to the instance folder.
#:
#: .. versionadded:: 0.8

Loading…
Cancel
Save