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