This repository has been archived on 2024-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
spud-py/spud/daemon.py
Marc Cataford 72200752d6
All checks were successful
/ Static Analysis (push) Successful in 56s
/ Tests (push) Successful in 45s
feat: add daemon command + dummy server setup
2024-04-13 01:28:48 -04:00

9 lines
106 B
Python

import fastapi
app = fastapi.FastAPI()
@app.get("/")
def alive():
"""Live check."""
return 200