initial commit

This commit is contained in:
2025-07-20 00:51:55 +03:00
commit 42684e0cb6
29 changed files with 2615 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import random
import string
CHARACTERS = string.ascii_letters
def generate_uid(length: int = 6) -> str:
return "".join(random.choice(CHARACTERS) for _ in range(length))