mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-02 16:02:53 +01:00
681817ceae
GitOrigin-RevId: 83514338be1d662518bab9fe5ab6eefef98f229f
28 lines
1.3 KiB
Python
28 lines
1.3 KiB
Python
from .update_document import SendDocumentOperationUpdateDocumentPbToSummaAction
|
|
from .update_document_scimag import (
|
|
CleanDocumentOperationUpdateDocumentScimagPbAction,
|
|
FillDocumentOperationUpdateDocumentScimagPbFromExternalSourceAction,
|
|
SendDocumentOperationUpdateDocumentScimagPbReferencesToKafkaAction,
|
|
SendDocumentOperationUpdateDocumentScimagPbToGoldenPostgresAction,
|
|
)
|
|
from .update_document_scitech import (
|
|
CleanDocumentOperationUpdateDocumentScitechPbAction,
|
|
SendDocumentOperationUpdateDocumentScitechPbToGoldenPostgresAction,
|
|
)
|
|
from .update_document_sharience import (
|
|
SendDocumentOperationUpdateDocumentShariencePbToGoldenPostgresAction,
|
|
)
|
|
from .vote import SendDocumentOperationVotePbToGoldenPostgresAction
|
|
|
|
__all__ = [
|
|
'CleanDocumentOperationUpdateDocumentScimagPbAction',
|
|
'CleanDocumentOperationUpdateDocumentScitechPbAction',
|
|
'FillDocumentOperationUpdateDocumentScimagPbFromExternalSourceAction',
|
|
'SendDocumentOperationUpdateDocumentPbToSummaAction',
|
|
'SendDocumentOperationUpdateDocumentScimagPbReferencesToKafkaAction',
|
|
'SendDocumentOperationUpdateDocumentScimagPbToGoldenPostgresAction',
|
|
'SendDocumentOperationUpdateDocumentScitechPbToGoldenPostgresAction',
|
|
'SendDocumentOperationUpdateDocumentShariencePbToGoldenPostgresAction',
|
|
'SendDocumentOperationVotePbToGoldenPostgresAction',
|
|
]
|