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
+6
View File
@@ -0,0 +1,6 @@
cdef class User:
def __init__(self, str id, str email, RoleEnum role):
self.id = id
self.email = email
self.role = role