mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-19 04:12:03 +03:00
8 lines
184 B
Python
8 lines
184 B
Python
|
from uuid import UUID
|
||
|
|
||
|
from modules.user.repository import get_user_id_by_user_email
|
||
|
|
||
|
|
||
|
def get_user_id_by_email(email: str) -> UUID | None:
|
||
|
return get_user_id_by_user_email(email)
|