Moved backend entirely into the backend folder

This commit is contained in:
WerWolv
2023-09-26 14:54:52 +02:00
parent 3960d28b06
commit 0c2079fa85
36 changed files with 3 additions and 3 deletions
+6
View File
@@ -0,0 +1,6 @@
from enum import Enum
class UserType(Enum):
HOST_USER = 1
EFFECTIVE_USER = 2
ROOT = 3