forked from sr2/cloud-api
11 lines
205 B
Python
11 lines
205 B
Python
"""
|
|
Non-business logic reusable functions and classes for the services module
|
|
|
|
Exports:
|
|
- generate_api_key(): returns a new UUID
|
|
"""
|
|
import uuid
|
|
|
|
|
|
def generate_api_key() -> str:
|
|
return str(uuid.uuid4())
|