Refactor code structure for improved readability and maintainability

This commit is contained in:
claudi 2026-04-07 09:10:53 +02:00
parent 389d72a136
commit aa4c067ea8
1685 changed files with 393439 additions and 71932 deletions

View file

@ -0,0 +1,12 @@
from .schema.builder import SchemaBuilder, Schema
from .schema.node import SchemaNode, SchemaGenerationError
from .schema.strategies.base import SchemaStrategy, TypedSchemaStrategy
__version__ = '1.3.0'
__all__ = [
'SchemaBuilder',
'SchemaNode',
'SchemaGenerationError',
'Schema',
'SchemaStrategy',
'TypedSchemaStrategy']