grokgpt / main.py
Grokgpt's picture
Refactored almost everything
4a020cd
raw
history blame
No virus
95 Bytes
from fastapi import FastAPI
app = FastAPI()
def read_root():
return {"Hello": "World!"}