Chip_Router / app.py
techavenger123
Chip Routing V1.
419b687
raw
history blame
253 Bytes
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@Author : Mihir Mithani
@Date : 05-05-2026 , 12:16
@File : app.py.py
@Desc :
"""
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}