mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
12 lines
253 B
Python
12 lines
253 B
Python
from subprocess import call
|
|
from controllers.system_controller import SystemController
|
|
|
|
|
|
class TerminalController:
|
|
def __init__(self):
|
|
pass
|
|
|
|
@staticmethod
|
|
def clear():
|
|
call('clear' if SystemController().is_unix() else 'cls')
|