mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-30 20:37:43 +01:00
7c1bb06b1b
GitOrigin-RevId: ccfd55db266862ed70f1299aaf62500765b03cc4
16 lines
337 B
Python
16 lines
337 B
Python
from nexus.models.proto.operation_pb2 import \
|
|
DocumentOperation as DocumentOperationPb
|
|
|
|
from .base import (
|
|
BaseJsonConsumer,
|
|
BasePbConsumer,
|
|
)
|
|
|
|
|
|
class DocumentOperationsConsumer(BasePbConsumer):
|
|
pb_class = DocumentOperationPb
|
|
|
|
|
|
class DocumentOperationsJsonConsumer(BaseJsonConsumer):
|
|
pb_class = DocumentOperationPb
|