Return the current app.
()
| 106 | |
| 107 | if os.environ.get('C_STRICT_APP'): # pragma: no cover |
| 108 | def get_current_app(): |
| 109 | """Return the current app.""" |
| 110 | raise RuntimeError('USES CURRENT APP') |
| 111 | elif os.environ.get('C_WARN_APP'): # pragma: no cover |
| 112 | def get_current_app(): |
| 113 | import traceback |
no test coverage detected