Files
DocsGPT/application/parser/connectors/share_point/__init__.py
2025-10-08 10:34:38 +05:30

10 lines
259 B
Python

"""
Share Point connector package for DocsGPT.
This module provides authentication and document loading capabilities for Share Point.
"""
from .auth import SharePointAuth
from .loader import SharePointLoader
__all__ = ['SharePointAuth', 'SharePointLoader']