11 lines
229 B
Python
11 lines
229 B
Python
import uuid
|
|
|
|
class Uuid_utilsPlugin:
|
|
def run(self, *args):
|
|
"""Genera un UUID aleatorio."""
|
|
return f"🆔 **UUID:** {uuid.uuid4()}"
|
|
|
|
def help(self):
|
|
return "Uso: .uuid - Genera un UUID aleatorio."
|
|
|