mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 09:16:49 +01:00
7 lines
94 B
Python
7 lines
94 B
Python
|
import uuid
|
||
|
|
||
|
|
||
|
def generate_clickhouse_uuid() -> str:
|
||
|
id = uuid.uuid4()
|
||
|
return str(id)
|