Spaces:
Build error
Build error
| # Copyright (c) Microsoft Corporation. All rights reserved. | |
| # Licensed under the MIT License. | |
| """Bot app with Flask routing.""" | |
| from flask import Response | |
| from .bot_app import BotApp | |
| APP = BotApp() | |
| def messages() -> Response: | |
| return APP.messages() | |
| def test() -> Response: | |
| return APP.test() | |