This is an automated email from the ASF dual-hosted git repository. yzhao pushed a commit to branch fastapi-dev in repository https://gitbox.apache.org/repos/asf/mnemonic-site.git
commit cccfb8915816a4ce449cf39da1a1ea957a9fe9c2 Author: Yanhui Zhao <[email protected]> AuthorDate: Sat Dec 18 05:08:34 2021 +0000 MNEMONIC-702: Setup a new branch on github mnemonic-site for development tasks --- fastapi/server.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/fastapi/server.py b/fastapi/server.py new file mode 100644 index 0000000..08b9af9 --- /dev/null +++ b/fastapi/server.py @@ -0,0 +1,8 @@ +from typing import Optional +from fastapi import FASTAPI + +app = FastAPI() + [email protected]("/") +def mnemonic_home(): + return {"Apache Mnemonic Home"}
