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"
|