After further analysis, the functionality was deemed too complex to implement for such a niche use case and will therefore be removed from the implementation backlog
13 lines
656 B
Python
13 lines
656 B
Python
# Exports generic type parser
|
|
from ._type_parser import GenericTypeParser as GenericTypeParser
|
|
from .allof_type_parser import AllOfTypeParser as AllOfTypeParser
|
|
from .anyof_type_parser import AnyOfTypeParser as AnyOfTypeParser
|
|
from .array_type_parser import ArrayTypeParser as ArrayTypeParser
|
|
from .boolean_type_parser import BooleanTypeParser as BooleanTypeParser
|
|
from .float_type_parser import FloatTypeParser as FloatTypeParser
|
|
|
|
# Exports Implementations
|
|
from .int_type_parser import IntTypeParser as IntTypeParser
|
|
from .object_type_parser import ObjectTypeParser as ObjectTypeParser
|
|
from .string_type_parser import StringTypeParser as StringTypeParser
|