Spaces:
Runtime error
Runtime error
techavenger123 commited on
Commit ·
419b687
1
Parent(s): 880a81b
Chip Routing V1.
Browse files- app.py +16 -0
- requirements.txt +0 -0
app.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
# -*- coding: utf-8 -*-
|
| 3 |
+
"""
|
| 4 |
+
@Author : Mihir Mithani
|
| 5 |
+
@Date : 05-05-2026 , 12:16
|
| 6 |
+
@File : app.py.py
|
| 7 |
+
@Desc :
|
| 8 |
+
"""
|
| 9 |
+
from fastapi import FastAPI
|
| 10 |
+
|
| 11 |
+
app = FastAPI()
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
@app.get("/")
|
| 15 |
+
def greet_json():
|
| 16 |
+
return {"Hello": "World!"}
|
requirements.txt
ADDED
|
File without changes
|