mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-15 18:13:40 +03:00
6 lines
98 B
Python
6 lines
98 B
Python
from enum import Enum
|
|
|
|
class UserType(Enum):
|
|
HOST_USER = 1
|
|
EFFECTIVE_USER = 2
|
|
ROOT = 3 |