7 lines
98 B
Python
7 lines
98 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
@app.get('/')
|
|
def root():
|
|
return "Hello, World!" |