feat: add init for Share Point connector module

This commit is contained in:
Abhishek Malviya
2025-10-08 10:34:38 +05:30
parent da62133d21
commit 2b73c0c9a0

View File

@@ -0,0 +1,10 @@
"""
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']