mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
Created system_controller
This commit is contained in:
parent
1da588b3fc
commit
a66e8bc683
9
controllers/system_controller.py
Normal file
9
controllers/system_controller.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from os import name
|
||||
|
||||
|
||||
class SystemController:
|
||||
def __init__(self, sys_name=name):
|
||||
self._sys_name = sys_name
|
||||
|
||||
def is_unix(self):
|
||||
return True if self._sys_name == 'posix' else False
|
Loading…
Reference in New Issue
Block a user