9 lines
157 B
Python
9 lines
157 B
Python
from db.engine import engine
|
|
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/api/python")
|
|
def hello_world():
|
|
return {"message": "Hello World"}
|