6077f685e0
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Remove endpoints api/login/token and api/login/profile --------- Co-authored-by: Thomas Peetz <thomas.peetz@cimt-ag.de> Reviewed-on: #89
10 lines
126 B
Python
10 lines
126 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class HealthCheck(BaseModel):
|
|
"""
|
|
Health check model
|
|
"""
|
|
|
|
status: str = "ok"
|