cwtfp
Results
1
issues of
cwtfp
I have requirements to implement pagination with parameters `size` and `from`. I am forming my custom parameter class like: ```python class FromSizeParams(BaseModel, AbstractParams): size: int = Query(50, ge=1, le=100) #...
bug