9 lines
125 B
Python
9 lines
125 B
Python
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Pong(BaseModel):
|
|
"""The response from the `/ping` endpoint."""
|
|
|
|
message: str
|