feat: Update endpoint countries

This commit is contained in:
Backend IM Bot 2025-03-21 05:07:34 +00:00
parent 52fa64ef08
commit 4ccfe6d1f5

View File

@ -0,0 +1,8 @@
from fastapi import FastAPI
from typing import List
app = FastAPI()
@app.get("/countries", response_model=List[str])
def get_countries():
return ["USA", "Canada", "Germany", "France", "Japan", "Australia"]