gateway/modules/workflows/methods/methodSharepoint/actions/__init__.py
2026-02-22 00:07:33 +01:00

28 lines
722 B
Python

# Copyright (c) 2025 Patrick Motsch
# All rights reserved.
"""Action modules for SharePoint operations."""
# Export all actions
from .findDocumentPath import findDocumentPath
from .readDocuments import readDocuments
from .uploadDocument import uploadDocument
from .listDocuments import listDocuments
from .analyzeFolderUsage import analyzeFolderUsage
from .findSiteByUrl import findSiteByUrl
from .downloadFileByPath import downloadFileByPath
from .copyFile import copyFile
from .uploadFile import uploadFile
__all__ = [
'findDocumentPath',
'readDocuments',
'uploadDocument',
'listDocuments',
'analyzeFolderUsage',
'findSiteByUrl',
'downloadFileByPath',
'copyFile',
'uploadFile',
]