beddcf6987
apparently this demo is not customizing anything and had some old code which no longer works (auth policy)
14 lines
248 B
Python
14 lines
248 B
Python
# -*- coding: utf-8; -*-
|
|
"""
|
|
Rattail Demo web API
|
|
"""
|
|
|
|
from tailbone import webapi as base
|
|
|
|
|
|
def main(global_config, **settings):
|
|
"""
|
|
This function returns a Pyramid WSGI application.
|
|
"""
|
|
return base.main(global_config, **settings)
|