12 lines
191 B
Python
12 lines
191 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
@app.get("/")
|
|
def root():
|
|
return {"message": "ide gas!", "autor": "vinko004"}
|
|
|
|
@app.get("/health")
|
|
def health():
|
|
return {"status": "ok"}
|