Changeset 640ca78 in rattail-demo
- Timestamp:
- 11/21/2022 10:08:55 PM (2 months ago)
- Branches:
- master
- Children:
- 16fdfd5
- Parents:
- e6d4f7e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rattail_demo/web/app.py
re6d4f7e r640ca78 3 3 Pyramid web application 4 4 """ 5 6 from __future__ import unicode_literals, absolute_import7 5 8 6 from tailbone import app … … 41 39 42 40 return pyramid_config.make_wsgi_app() 41 42 43 def asgi_main(): 44 """ 45 This function returns an ASGI application. 46 """ 47 from tailbone.asgi import make_asgi_app 48 49 return make_asgi_app(main)
Note: See TracChangeset
for help on using the changeset viewer.