mirror of
https://github.com/NovaOSS/nova-cord.git
synced 2024-11-25 23:23:57 +01:00
5 lines
85 B
Python
5 lines
85 B
Python
|
import secrets
|
||
|
|
||
|
async def create(user):
|
||
|
return 'nv-' + secrets.token_urlsafe(32)
|