Files
loader/credentials.pyx
T
Oleksandr Bezdieniezhnykh 941b8199aa initial commit
Made-with: Cursor
2026-03-25 05:37:10 +02:00

10 lines
207 B
Cython

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}'