File size: 196 Bytes
cbdb918
ce79099
a3780db
 
cbdb918
 
 
a3780db
1
2
3
4
5
6
7
8
from fastapi import FastAPI

# Δημιουργία FastAPI εφαρμογής
app = FastAPI()

@app.get("/")
async def root():
    return {"message": "Welcome to your basic FastAPI application!"}