mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
38 lines
530 B
Python
38 lines
530 B
Python
from .views import (
|
|
alias_options,
|
|
new_custom_alias,
|
|
custom_domain,
|
|
new_random_alias,
|
|
user_info,
|
|
auth,
|
|
auth_mfa,
|
|
alias,
|
|
apple,
|
|
mailbox,
|
|
notification,
|
|
setting,
|
|
export,
|
|
phone,
|
|
sudo,
|
|
user,
|
|
)
|
|
|
|
__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",
|
|
]
|