Created basic backend structure, auth and CRUD endpoints.

This commit is contained in:
2025-02-22 13:42:10 +03:00
parent ed5fac3432
commit cabcf837f9
14 changed files with 470 additions and 3 deletions

9
core/enums.py Normal file
View File

@@ -0,0 +1,9 @@
import enum
class ConnectionTypes(str, enum.Enum):
mysql = "mysql"
postgresql = 'postgresql'
class UserRole(enum.Enum):
admin = "admin"
user = "user"