mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
11 lines
258 B
Python
11 lines
258 B
Python
"""
|
|
Google Drive connector for DocsGPT.
|
|
|
|
This module provides authentication and document loading capabilities for Google Drive.
|
|
"""
|
|
|
|
from .auth import GoogleDriveAuth
|
|
from .loader import GoogleDriveLoader
|
|
|
|
__all__ = ['GoogleDriveAuth', 'GoogleDriveLoader']
|