mirror of
https://github.com/azaion/loader.git
synced 2026-04-22 08:26:32 +00:00
941b8199aa
Made-with: Cursor
10 lines
207 B
Cython
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}'
|
|
|