Added an endpoint for getting the actual stored responses, and used it to test and improve the python package.
8 lines
131 B
Python
8 lines
131 B
Python
from attr import dataclass
|
|
|
|
|
|
@dataclass
|
|
class OpenPipeMeta:
|
|
# Cache status. One of 'HIT', 'MISS', 'SKIP'
|
|
cache_status: str
|