18 lines
342 B
Python
18 lines
342 B
Python
from ormar.models.descriptors.descriptors import (
|
|
BytesDescriptor,
|
|
JsonDescriptor,
|
|
PkDescriptor,
|
|
PropertyDescriptor,
|
|
PydanticDescriptor,
|
|
RelationDescriptor,
|
|
)
|
|
|
|
__all__ = [
|
|
"PydanticDescriptor",
|
|
"RelationDescriptor",
|
|
"PropertyDescriptor",
|
|
"PkDescriptor",
|
|
"JsonDescriptor",
|
|
"BytesDescriptor",
|
|
]
|