refacotr queryset proxy into separate file

This commit is contained in:
collerek
2020-09-15 12:42:58 +02:00
parent 1075e841cb
commit 12ec8492ef
5 changed files with 94 additions and 84 deletions

View File

@ -15,6 +15,7 @@ from ormar.fields import (
Time,
)
from ormar.models import Model
from ormar.queryset import QuerySet
__version__ = "0.3.0"
__all__ = [
@ -36,4 +37,5 @@ __all__ = [
"MultipleMatches",
"NoMatch",
"ForeignKey",
"QuerySet",
]