chunker ui redo
This commit is contained in:
@@ -101,6 +101,12 @@ class SchemaLoader:
|
||||
for enum_cls in enums:
|
||||
self.enums.append(self._parse_enum(enum_cls))
|
||||
|
||||
# Extract VIEWS (view/event projections)
|
||||
if load_all or "views" in include:
|
||||
views = getattr(module, "VIEWS", [])
|
||||
for cls in views:
|
||||
self.api_models.append(self._parse_dataclass(cls))
|
||||
|
||||
# Extract GRPC_MESSAGES (optional)
|
||||
if load_all or "grpc" in include:
|
||||
grpc_messages = getattr(module, "GRPC_MESSAGES", [])
|
||||
|
||||
Reference in New Issue
Block a user