mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-13 15:51:14 -05:00
10 lines
186 B
Python
10 lines
186 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import PlainTextResponse
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/", response_class=PlainTextResponse)
|
|
async def main():
|
|
return "Hello World"
|