This repository has been archived on 2020-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
statuspage/app/main.py

13 lines
190 B
Python
Raw Normal View History

2020-07-30 23:26:57 +02:00
# 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!"}