basically refactored the email viewer
This commit is contained in:
21
apis/himalaya/__init__.py
Normal file
21
apis/himalaya/__init__.py
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user