5 lines
84 B
Python
5 lines
84 B
Python
|
import uuid
|
||
|
import os.path
|
||
|
|
||
|
def generate_storage_filename():
|
||
|
return uuid.uuid4()
|