13 lines
190 B
Python
13 lines
190 B
Python
|
# vim:fileencoding=utf-8:ft=python:foldmethod=marker
|
||
|
# statuspage/app/main.py
|
||
|
|
||
|
from fastapi import FastAPI
|
||
|
|
||
|
|
||
|
app = FastAPI()
|
||
|
|
||
|
|
||
|
@app.get("/api/v1/ping")
|
||
|
def pong():
|
||
|
return {"ping": "pong!"}
|