basically refactored the email viewer

This commit is contained in:
Tim Bendt
2025-05-14 15:11:24 -06:00
parent 5c9ad69309
commit fc57e201a2
20 changed files with 1348 additions and 575 deletions

21
apis/himalaya/__init__.py Normal file
View File

@@ -0,0 +1,21 @@
"""
Himalaya API module for interacting with the Himalaya email client.
"""
from apis.himalaya.client import (
list_envelopes,
list_accounts,
list_folders,
delete_message,
archive_message,
get_message_content,
)
__all__ = [
"list_envelopes",
"list_accounts",
"list_folders",
"delete_message",
"archive_message",
"get_message_content",
]