18 lines
445 B
Python
18 lines
445 B
Python
# Copyright (c) 2025 Patrick Motsch
|
|
# All rights reserved.
|
|
|
|
"""Action modules for Context operations."""
|
|
|
|
# Export all actions
|
|
from .getDocumentIndex import getDocumentIndex
|
|
from .extractContent import extractContent
|
|
from .neutralizeData import neutralizeData
|
|
from .triggerPreprocessingServer import triggerPreprocessingServer
|
|
|
|
__all__ = [
|
|
'getDocumentIndex',
|
|
'extractContent',
|
|
'neutralizeData',
|
|
'triggerPreprocessingServer',
|
|
]
|
|
|