This commit is contained in:
2023-11-26 18:49:05 +01:00
parent 490e9bb80c
commit 407fa6351d
2 changed files with 5 additions and 2 deletions
+4
View File
@@ -6,6 +6,7 @@ from onetimepass import valid_totp
from secrets import choice
import segno
from os import path
import uuid
class Tools():
@@ -69,4 +70,7 @@ class Tools():
print('Wrong otp, please try again.')
return False
def key(self):
return uuid.uuid4().hex
tools = Tools()