This repository has been archived on 2024-09-10. You can view files and clone it, but cannot push or open issues or pull requests.

10 lines
233 B
Python

import time
class MessagePayload(object):
def __init__(self, body: bytes):
self.body = body
self.timestamp: float = time.time()
self.request_url: str = ""
self.request_query: dict[str, str] = {}