Initial Implementation of $ref

This commit is contained in:
2025-06-12 01:54:52 -03:00
parent 129114a85f
commit 760f30d08f
4 changed files with 111 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ from .boolean_type_parser import BooleanTypeParser
from .float_type_parser import FloatTypeParser
from .int_type_parser import IntTypeParser
from .object_type_parser import ObjectTypeParser
from .ref_type_parser import RefTypeParser
from .string_type_parser import StringTypeParser
@@ -22,4 +23,5 @@ __all__ = [
"IntTypeParser",
"ObjectTypeParser",
"StringTypeParser",
"RefTypeParser",
]