mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-13 07:14:54 +03:00
6 lines
152 B
Python
6 lines
152 B
Python
|
from uuid import UUID
|
||
|
|
||
|
|
||
|
def build_secret_unique_name(user_id: UUID, brain_id: UUID, secret_name: str):
|
||
|
return f"{user_id}-{brain_id}-{secret_name}"
|