12 lines
208 B
Python
12 lines
208 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI(title="DSF Dummy API")
|
|
|
|
@app.get("/")
|
|
def root():
|
|
return {"message": "AppSec - SCA Test Project"}
|
|
|
|
@app.get("/health")
|
|
def health():
|
|
return {"status": "ok"}
|