2020-01-20 15:00:56 +01:00
|
|
|
from .views import (
|
|
|
|
alias_options,
|
|
|
|
new_custom_alias,
|
2020-11-15 19:09:25 +01:00
|
|
|
custom_domain,
|
2020-01-20 15:00:56 +01:00
|
|
|
new_random_alias,
|
|
|
|
user_info,
|
2020-04-09 20:31:53 +02:00
|
|
|
auth,
|
2020-01-20 15:00:56 +01:00
|
|
|
auth_mfa,
|
2020-02-04 17:26:59 +01:00
|
|
|
alias,
|
2020-04-19 11:13:38 +02:00
|
|
|
apple,
|
2020-05-23 16:09:06 +02:00
|
|
|
mailbox,
|
2020-05-23 18:53:29 +02:00
|
|
|
notification,
|
2020-10-28 17:23:58 +01:00
|
|
|
setting,
|
2021-03-06 21:56:42 +01:00
|
|
|
export,
|
2022-01-04 16:22:41 +01:00
|
|
|
phone,
|
2022-06-23 14:26:36 +02:00
|
|
|
sudo,
|
2022-07-02 16:45:58 +02:00
|
|
|
user,
|
2020-01-20 15:00:56 +01:00
|
|
|
)
|
2023-11-21 16:42:18 +01:00
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
"alias_options",
|
|
|
|
"new_custom_alias",
|
|
|
|
"custom_domain",
|
|
|
|
"new_random_alias",
|
|
|
|
"user_info",
|
|
|
|
"auth",
|
|
|
|
"auth_mfa",
|
|
|
|
"alias",
|
|
|
|
"apple",
|
|
|
|
"mailbox",
|
|
|
|
"notification",
|
|
|
|
"setting",
|
|
|
|
"export",
|
|
|
|
"phone",
|
|
|
|
"sudo",
|
|
|
|
"user",
|
|
|
|
]
|