This commit is contained in:
2026-07-16 16:31:36 +03:00
commit 3c8d2dd572
26 changed files with 1684 additions and 0 deletions

14
main.py Normal file
View File

@@ -0,0 +1,14 @@
from fastapi import FastAPI
import uvicorn
app=FastAPI(root_path="/")
@app.get("")
def root()->dict:
return {"root":"hello, this is root"}
def main():
uvicorn.run("main:app", reload=True)
if __name__=="__main__":
main()