Initiliazation
This commit is contained in:
11
vv1/ssh/utils/mod.py
Normal file
11
vv1/ssh/utils/mod.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import os
|
||||
from sys import platform
|
||||
|
||||
|
||||
class Utils:
|
||||
@staticmethod
|
||||
def clear_shell():
|
||||
if platform == "win32":
|
||||
os.system("cls")
|
||||
else:
|
||||
os.system("clear")
|
||||
Reference in New Issue
Block a user