mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-05-05 19:47:06 +02:00
11 lines
169 B
Python
11 lines
169 B
Python
|
|
from enum import Enum
|
||
|
|
|
||
|
|
|
||
|
|
class SecurityLevel(Enum):
|
||
|
|
HIGH = 0
|
||
|
|
LOW = 1
|
||
|
|
|
||
|
|
@staticmethod
|
||
|
|
def list():
|
||
|
|
return list(map(lambda s: s.name, SecurityLevel))
|