8 lines
246 B
Python
8 lines
246 B
Python
|
|
"""
|
||
|
|
Outlook Module - GMAO Collège
|
||
|
|
Intégration Outlook/Microsoft
|
||
|
|
"""
|
||
|
|
from .models import OutlookAccount, OutlookMail
|
||
|
|
from .processed_folder_config import ProcessedFolderConfig
|
||
|
|
|
||
|
|
__all__ = ['OutlookAccount', 'OutlookMail', 'ProcessedFolderConfig']
|