initial commit

Made-with: Cursor
This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-03-25 05:37:10 +02:00
commit 941b8199aa
21 changed files with 861 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
cdef class Credentials:
def __init__(self, str email, str password):
self.email = email
self.password = password
def __str__(self):
return f'{self.email}: {self.password}'