mirror of
https://github.com/apidoorman/doorman.git
synced 2026-02-09 11:07:05 -06:00
11 lines
215 B
Python
11 lines
215 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class RequestModel(BaseModel):
|
|
method: str
|
|
path: str
|
|
headers: dict[str, str]
|
|
query_params: dict[str, str]
|
|
identity: str | None = None
|
|
body: str | None = None
|