Skip to content

Commit

Permalink
base pagination added for typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Bishwas-py committed Mar 9, 2024
1 parent c4097e7 commit 3aa947a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
15 changes: 15 additions & 0 deletions djapy/core/pagination/base_pagination.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from typing import Generic

from djapy.schema import Schema
from djapy.core.typing_utils import G_TYPE


class BasePagination:
"""
Basic pagination with no features implemented. This is the structure of the pagination.
"""

query = []

class response(Schema, Generic[G_TYPE]):
pass

0 comments on commit 3aa947a

Please sign in to comment.