mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 00:23:17 +00:00
10 lines
259 B
Python
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'] |