diff --git a/main.py b/main.py new file mode 100644 index 000000000..892a473ee --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +from fastapi import FastAPI +app =FastAPI() + +@app.get("/") +def read_root(): + return {"message" : "Hello World from risha-bit"} \ No newline at end of file