You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
383 B
Python
24 lines
383 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class AdminRootResponse(BaseModel):
|
|
service: str
|
|
status: str
|
|
message: str
|
|
environment: str
|
|
|
|
|
|
class AdminHealthResponse(BaseModel):
|
|
service: str
|
|
status: str
|
|
version: str
|
|
|
|
|
|
class AdminSystemInfoResponse(BaseModel):
|
|
service: str
|
|
app_name: str
|
|
environment: str
|
|
version: str
|
|
api_prefix: str
|
|
debug: bool
|