7 lines
96 B
Python
7 lines
96 B
Python
|
from dataclasses import dataclass
|
||
|
|
||
|
|
||
|
@dataclass(frozen=True)
|
||
|
class PingResponse:
|
||
|
status: str
|