summaryrefslogtreecommitdiffstats
path: root/ttun_server/endpoints.py
blob: 51c17aa1448b7c7957374b3c85f86f7b85028d24 (plain)
1
2
3
4
5
6
7
from fastapi import FastAPI

base_endpoints = FastAPI()

@base_endpoints.get('/health/')
async def health():
    return 'OK'