feat: вфыв

This commit is contained in:
2024-07-20 09:32:22 +03:00
parent e7235021f9
commit 6b09251141
27 changed files with 536 additions and 119 deletions

8
enums/user.py Normal file
View File

@@ -0,0 +1,8 @@
from enum import StrEnum
class UserRole(StrEnum):
user = 'user'
employee = 'employee'
manager = 'manager'
admin = 'admin'