mirror of
https://github.com/shadoll/scatcher.git
synced 2025-12-20 03:26:59 +00:00
11 lines
192 B
Python
11 lines
192 B
Python
from pydantic import BaseModel
|
|
from schema.methods import Methods
|
|
|
|
|
|
class RequestData(BaseModel):
|
|
data: dict
|
|
method: Methods = Methods.GET
|
|
url: str
|
|
headers: dict
|
|
time: str
|