12 lines
338 B
Python
12 lines
338 B
Python
from .email.service import send_email
|
|
from .redis.old_functions import (
|
|
save_object_to_redis as save_access_token_to_redis,
|
|
)
|
|
from .redis.functions import RedisActions
|
|
from .templates.password_templates import (
|
|
password_is_changed_template,
|
|
change_your_password_template,
|
|
)
|
|
|
|
update_selected_to_redis = RedisActions.set_json
|