Now we have a stand-alone server which can provide services for more than one backend at the same time

This commit is contained in:
Andres Riancho 2013-12-27 15:45:53 -03:00 committed by Steve Pulec
commit c6515af8bf
3 changed files with 67 additions and 21 deletions

View file

@ -110,6 +110,13 @@ class BaseBackend(object):
return paths
@property
def url_bases(self):
"""
A list containing the url_bases extracted from urls.py
"""
return self._url_module.url_bases
@property
def flask_paths(self):
"""