5 lines
88 B
Python
5 lines
88 B
Python
|
import uuid
|
||
|
|
||
|
|
||
|
def uuid_path(instance, filename):
|
||
|
return f'{uuid.uuid4()}/{filename}'
|