team3 / app /main.py
BjarneBepaData
Start building the CUDA container image
dd7cd5f
raw
history blame
No virus
101 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"Hello": "World"}