rattail-demo/rattail_demo/web/webapi.py
Lance Edgar beddcf6987 fix: just use upstream main() for webapi
apparently this demo is not customizing anything and had some old code
which no longer works (auth policy)
2024-07-18 09:37:28 -05:00

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)