Initiliazation

This commit is contained in:
2025-12-22 16:23:48 +01:00
parent 7a8b6d451d
commit b29e6179f3
165 changed files with 28070 additions and 0 deletions

11
vv1/ssh/utils/mod.py Normal file
View 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")