7 lines
119 B
Python
7 lines
119 B
Python
# Copyright (c) 2026 PowerOn AG
|
|
# All rights reserved.
|
|
import uuid
|
|
|
|
|
|
def makeId() -> str:
|
|
return str(uuid.uuid4())
|